UITableView中的自定义单元格(iOS 9)

时间:2015-09-11 12:31:48

标签: ios swift uitableview swift2 ios9

我有包含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)

1 个答案:

答案 0 :(得分:1)

好的,我找到了解决办法。我从XIB创建单元格时的问题。所以我将self.contentView.userInteractionEnabled = false添加到了单元格类,它解决了问题