码迷,mamicode.com
首页 > 移动开发 > 详细

iOS Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'unable to

时间:2017-08-16 23:20:40      阅读:292      评论:0      收藏:0      [点我收藏+]

标签:intern   ble   stat   div   gis   nali   nsstring   with   track   

刚接触iOS,依照教程操作执行出现错误

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


解决的方法是加一句:

[self.tableView registerClass:[UITableViewCell class] forCellReuseIdentifier:CellIdentifier]; 


加的位置是:

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath 

    static NSString *CellIdentifier = @"ListPrototypeCell"; 
    [self.tableView registerClass:[UITableViewCell class] forCellReuseIdentifier:CellIdentifier]; 
    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier forIndexPath:indexPath]; 

    // config cell
 XYZToDoItem * toDoItem = [self.toDoItem objectAtIndex:indexPath.row];

    cell.textLabel.text = toDoItem.itemName;


   return cell; 
}

因为刚学习IOS,原因不明

iOS Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'unable to

标签:intern   ble   stat   div   gis   nali   nsstring   with   track   

原文地址:http://www.cnblogs.com/yutingliuyl/p/7376159.html

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