我有一个使用 iboutlet 创建的表视图。当我尝试重新加载表时,它给出了这个异常。由于未捕获的异常“NSInvalidArgumentException”而终止应用程序,reason: '-[NSCFString objectAtIndex:]:
无法识别的选择器发送到实例0x5949310
“
IBOutlet UITableView *tableStudent;
这是 .h 和 .m 文件。
。H
IBOutlet UITableView *tableStudent;
-(IBAction)enabeluser;
.m
-(IBAction)enabeluser{
[tableStudent reloadData];
}