我有一个包含按钮的集合视图。按下按钮后我想隐藏它。如何在按钮的功能中访问此按钮的属性?
由于
cell.addButton.addTarget(self, action: "addToArray:", forControlEvents: UIControlEvents.TouchUpInside)
//这是函数
func addToArray(sender:AnyObject) {
println("Add to array")
}
答案 0 :(得分:0)
试试这个:
func addToArray(sender: UIButton) {
println("Add to array")
sender.hidden = true
}