我有一个使用iboutlet创建的tableview。当我尝试重新加载表时,它给出了这个异常。
因未捕获的异常'NSInvalidArgumentException'而终止应用,reason: '-[NSCFString objectAtIndex:]:
无法识别的选择器已发送到实例0x5949310
'
IBOutlet UITableView *tableStudent;
这里是.h和.m文件。
·H
IBOutlet UITableView *tableStudent;
-(IBAction)enabeluser;
的.m
-(IBAction)enabeluser{
[tableStudent reloadData];
}
答案 0 :(得分:0)
引用不存在的对象时会发生NSInvalidArgumentException。您可能在类中具有release datasource或tableview对象。
答案 1 :(得分:0)
当你调用realodData方法时,你的数组已经被释放了。