- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想获得一个与 UIButton(类型:.system)相同的按钮节点。如何设置
最佳答案
let buttonNode = ASDisplayNode { () -> UIButton in
let button = UIButton(type: .system)
button.backgroundColor = UIColor.white
button.cornerRadius = 4
button.setTitleColor(UIColor.red, for: .normal)
button.titleLabel?.font = UIFont.systemFont(ofSize: 17)
return button
}
if let button = buttonNode.view as? UIButton {
button.setTitle("qqq", for: .normal)
button.addTarget(self, action: #selector(tapAction), for: .touchUpInside)
}
关于ios - AsyncDisplayKit ASButtonNode 如何设置 buttonType,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44961708/
对于不同的控件状态和使用分数大小,我对 ASButtonNode 和 attributedTitle 存在问题。标题向左移动。 如果我对按钮使用磅值,我的行为是正确的。 我正在运行texture/as
这样可以自定义标题和图片的距离 最佳答案 你可以使用ASOverlayLayoutSpec。 像这样。 ------------ASOverlayLayoutSpec------------ | -
我可以这样设置正常状态的标题: let buttonTitle = NSAttributedString(string: "Book", attributes: attributes) buttonN
我用AsyncDisplayKit写button,用ASButtonNode,但是用时不能设置标题- (void)setAttributedTitle:(NSAttributedString *)状态
我想获得一个与 UIButton(类型:.system)相同的按钮节点。如何设置 最佳答案 let buttonNode = ASDisplayNode { () -> UIButton in
我想为 ASDisplayNode/ASButtonNode 添加渐变背景。我试过创建一个渐变层并将其添加为这样的子层 - CAGradientLayer *gradient = [CAGradien
我目前有一个 UIButton,它使用 RxSwift 的 rx.tap 函数来关闭 UIVIewController button.rx.tap .subscribe(onNext:
我是一名优秀的程序员,十分优秀!