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

weixin_33912445發表於2016-08-02

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

{

staticNSString *CellIdentifier =@"Cell";[self.tableView registerClass:[UITableViewCellclass] forCellReuseIdentifier:CellIdentifier];UITableViewCell*cell =[tableView dequeueReusableCellWithIdentifier:CellIdentifier forIndexPath:indexPath];if(cell ==nil)

{

cell=[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:CellIdentifier];

cell.selectionStyle=UITableViewCellSelectionStyleNone;

}//config cell...

returncell;

}


主要是加入了這句話解決


[self.tableView registerClass:[UITableViewCellclass] forCellReuseIdentifier:CellIdentifier];

相關文章