我想在ipad上实现以下GUI。
当用户启动我的应用程序时,我有一个ViewController,其上有一个按钮,在用户触摸一个按钮后,它将转到另一个View Controller。
我的问题是如何在当前的ViewController中显示新的ViewController。
由于
答案 0 :(得分:1)
您需要在标题中定义IBAction
并将按钮连接到此操作。
然后在您的操作中,使用:
/* also add - (IBAction) goToAnotherView: (id) sender; to your header */
- (IBAction) goToAnotherView: (id) sender {
MySecondViewController *secondView = [[MySecondViewController alloc] init];
[self.navigationController pushViewController:secondView animated:YES];
[secondView release];
}