我有包含uibutton的自定义单元格的简单tableview。更新到iOS 9 GM或9.1 Beta 1(无关紧要)后,单元格上的按钮停止响应触摸。我还在单元格类中创建了IBAction方法,但它根本不起作用
cell.username.setAttributedTitle(attrNameString, forState: .Normal)
cell.username.tag = notify.likeObject.likedUserId.integerValue
cell.username.addTarget(self, action: "showProfile:", forControlEvents: .TouchUpInside)
答案 0 :(得分:1)
好的,我找到了解决办法。我从XIB创建单元格时的问题。所以我将self.contentView.userInteractionEnabled = false
添加到了单元格类,它解决了问题