这是我的代码
override func viewDidLoad() {
super.viewDidLoad()
let button1 = UIButton(frame: CGRect(x: 50, y: 50, width: 30, height: 30))
button1.setTitle("hi", for: .normal)
button1.setTitleColor(.blue, for: .normal)
button1.setTitleColor(.black, for: .highlighted)
button1.addTarget(self, action: #selector(self.barItem2Clicked(sender:)), for: .touchUpInside)
button1.backgroundColor=UIColor.red
let barButton1 = UIBarButtonItem(customView: button1)
toolBar1.items?.append(barButton1)
}
方法barItem2Clicked
:
func barItem2Clicked(sender :Any?) {
NSLog("hello")
}
我想使用UIButton添加到UIToolBar,但无法调用button1
的操作,也不会显示突出显示的效果。
我点击了刚添加的button1
,但方法barItem2Clicked
从未调用过。
我错过了什么吗?
由于