0
我想獲得一個與UIButton相同的buttonNode(類型:.system)。 如何設置它AsyncDisplayKit ASButtonNode如何設置buttonType
我想獲得一個與UIButton相同的buttonNode(類型:.system)。 如何設置它AsyncDisplayKit ASButtonNode如何設置buttonType
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)
}