在swift3.0中使用selector
sureButton.addTarget(self, action: #selector(self.biubiu(sender:)), for: .touchUpInside)
比2.0 #selector更好的封装了seletor 只要先写好func 就可以实现事件绑定
tips 参数sender:UIButton 可以自感应
在swift3.0中使用selector
sureButton.addTarget(self, action: #selector(self.biubiu(sender:)), for: .touchUpInside)
比2.0 #selector更好的封装了seletor 只要先写好func 就可以实现事件绑定
tips 参数sender:UIButton 可以自感应