在Xcode 4.2中创建基于导航的应用程序?

时间:2012-03-19 09:38:31

标签: ios

我想在Xcode 4.2中创建一个基于导航的应用程序。我在.xib中有一些UIButton个。在按钮触摸事件我想要显示另一个屏幕。我尝试了Page-Based ApplicationSingle-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。

0 个答案:

没有答案