在我使用第二个 XIB 后,我正试图将其更改回主 XIB。这是我正在使用的当前代码:
NSArray *nibObjs = [[NSBundle mainBundle] loadNibNamed:@"Results1" owner:self options:nil];
UIView *aView = [nibObjs objectAtIndex:0];
self.view = aView;
我在第二个 xib 上有一个返回原始 xib 的按钮。当我按下按钮时,应用程序崩溃了。我不知道为什么,因为它没有显示错误 - 它只是崩溃。这是第二个 xib 或“Results1” xib 文件上按钮上的代码:
-(IBAction)Button100:(id)sender
{
NSArray *nibObjs = [[NSBundle mainBundle] loadNibNamed:@"main" owner:self options:nil];
UIView *aView = [nibObjs objectAtIndex:0];
self.view = aView;
}
不知道我做错了什么。