ios – Assertion failure in – [UITableView _configureCellForDisplay:forIndexPath:]

ios – Assertion failure in – [UITableView _configureCellForDisplay:forIndexPath:],第1张

概述有人可以告诉我为什么我得到这个错误? 这是我的.m文件: #import "ListaParticipantesViewController.h"#import "Participantes.h"#import "ModParticipantesViewController.h"@implementation ListaParticipantesViewController@synth 有人可以告诉我为什么我得到这个错误?

这是我的.m文件:

#import "ListaParticipantesVIEwController.h"#import "Participantes.h"#import "ModParticipantesVIEwController.h"@implementation ListaParticipantesVIEwController@synthesize dao;@synthesize participantes;- (voID)vIEwDIDLoad{    dao = [[ParticipantesDAO alloc] init];    participantes = [[NSMutableArray alloc] init];    participantes = [dao getDatos];    [super vIEwDIDLoad];}- (NSInteger)numberOfSectionsIntableVIEw:(UItableVIEw *)tableVIEw{    return 1;}- (NSInteger)tableVIEw:(UItableVIEw *)tableVIEw numberOfRowsInSection:(NSInteger)section{    return [participantes count];}- (UItableVIEwCell *)tableVIEw:(UItableVIEw *)tableVIEw cellForRowAtIndexPath:(NSIndexPath *)indexPath{    static Nsstring *CellIDentifIEr = @"celda";    UItableVIEwCell *cell = [tableVIEw dequeueReusableCellWithIDentifIEr:CellIDentifIEr];    cell.textLabel.text = [[participantes objectAtIndex:[indexPath row]] valueForKey:@"nombre"];    return cell;}#pragma mark - table vIEw delegate- (voID)tableVIEw:(UItableVIEw *)tableVIEw dIDSelectRowAtIndexPath:(NSIndexPath *)indexPath{    ModParticipantesVIEwController *destino = [self.storyboard instantiateVIEwControllerWithIDentifIEr:@"visualizacion"];    Participantes *tmp = [participantes objectAtIndex:[indexPath row]];    destino.participante = tmp;    [self.navigationController pushVIEwController:destino animated:YES];}@end

显示的错误是:

2013-04-13 17:40:20.235 Registro[5314:c07] *** Assertion failure in -[UItableVIEw _configureCellFordisplay:forIndexPath:],/SourceCache/UIKit_Sim/UIKit-2380.17/UItableVIEw.m:54712013-04-13 17:40:20.237 Registro[5314:c07] *** Terminating app due to uncaught exception 'NSInternalinconsistencyException',reason: 'UItableVIEw dataSource must return a cell from tableVIEw:cellForRowAtIndexPath:'*** First throw call stack:(0x209d012 0x11aae7e 0x209ce78 0xc40665 0x1a4c1b 0x13940c 0x1a4a7b 0x1a9919 0x1a99cf 0x1921bb 0x1a2b4b 0x13f2dd 0x11be6b0 0x2699fc0 0x268e33c 0x2699eaf 0x1de2bd 0x126b56 0x12566f 0x125589 0x1247e4 0x12461e 0x1253d9 0x1282d2 0x1d299c 0x11f574 0x11f76f 0x11f905 0x128917 0xec96c 0xed94b 0xfecb5 0xffbeb 0xf1698 0x1ff8df9 0x1ff8ad0 0x2012bf5 0x2012962 0x2043bb6 0x2042f44 0x2042e1b 0xed17a 0xeeffc 0x306d 0x1ef5)libc++abi.dylib: terminate called throwing an exception(lldb)

提前致谢!

解决方法 故事板或XIB没有使用您指定的单元格标识符定义单元格. 总结

以上是内存溢出为你收集整理的ios – Assertion failure in – [UITableView _configureCellForDisplay:forIndexPath:]全部内容,希望文章能够帮你解决ios – Assertion failure in – [UITableView _configureCellForDisplay:forIndexPath:]所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1097853.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-28
下一篇 2022-05-28

发表评论

登录后才能评论

评论列表(0条)

保存