码迷,mamicode.com
首页 > 其他好文 > 详细

UITableView 重用cell方法edequeueReusableCellWithIdentifier,出现错误

时间:2015-09-07 13:03:39      阅读:118      评论:0      收藏:0      [点我收藏+]

标签:cell

UITableView 使用重用cell方法edequeueReusableCellWithIdentifier,出现错误:

 *** Terminating app due to uncaught exception ‘NSInternalInconsistencyException‘, reason: ‘unable to dequeue a cell with identifier cell3 - must register a nib or a class for the identifier or connect a prototype cell in a storyboard‘


解决:

[self.tableView registerClass:[MyTableViewCell class] forCellReuseIdentifier:customCellIdentifier];

[self.tableView registerNib:[UINib nibWithNibName:@"MyTableViewCell" bundle:nil] forCellReuseIdentifier:customCellIdentifier];


UITableView 重用cell方法edequeueReusableCellWithIdentifier,出现错误

标签:cell

原文地址:http://nmamtf.blog.51cto.com/9950093/1692201

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!