标签:
在xib中重新定义了UITableViewCell后,要在继承了UITableViewCell的.m文件中,实现方法:
- (void)setSelected:(BOOL)selected animated:(BOOL)animated {
[super setSelected:selected animated:animated];
// Configure the view for the selected state
}
不然表格cell中的按钮控件不能点击
标签:
原文地址:http://www.cnblogs.com/aminopeptidase/p/4896002.html