我想在Xcode 4.2中创建一个基于导航的应用程序。我在.xib中有一些UIButton
个。在按钮触摸事件我想要显示另一个屏幕。我尝试了Page-Based Application
和Single-View Application
项目模板。
以下是我用于在按钮触摸事件上按下视图控制器的代码:
- (IBAction)btnGoToNextPageAction:(id)sender {
NSLog(@"btnGoToNextPageAction is pressed");
Test2 *objTest2 = [[Test2 alloc] initWithNibName:@"Test2" bundle:nil];
[self.navigationController pushViewController:objTest2 animated:YES];
[objTest2 release];
}
但它仅打印NSLog
文本,并且不显示下一页。我参考了这些链接:
我正在使用.xib,而不是.storyboard。