我使用。
获取带有标签托架名称的UIButtonUIButton *mybutton=[[UIButton alloc]init];
mybutton=(UIButton*)[cell viewWithTag:5];
和 UIButton * mybutton =(UIButton *)[cell viewWithTag:5];
这很好。但是当我使用
更改文本(带标签按钮)时[mybutton setTitle:@"hello" forState:UIControlStateNormal];
App因此错误而崩溃
[UITableViewCell setTitle:forState:]: unrecognized selector sent to instance 0x4b6f540'
* 首次调用堆栈:
任何解决方案??
提前致谢
答案 0 :(得分:2)
与您的contentView一起使用
mybutton=(UIButton*)[cell.contentView viewWithTag:5];