我正在 Xcode 中开发一个应用程序,我目前正在尝试访问一个单独的类并在那里调用一个函数。
发送消息的代码
-(IBAction) reloadButton:(id)sender
{
RootViewController *theInstance = [[RootViewController alloc] initWithNibName:@"MainWindow" bundle:nil];
[theInstance reloadTableView];
}
调用方法
.h 文件
-(void) reloadTableView;
.m 文件
-(void)reloadTableView
{
[self.tableView reloadData];
}
每当我构建时,都没有错误。但是当我运行应用程序并按下“reloadButton”时,它会崩溃并在以下行显示“程序收到信号:SIGABRT”:
[self.tableView reloadData];
可能是什么问题,我将如何解决这个问题?