0
我想在ipad上實現下面的GUI。一個ViewController轉到另一個ViewController
當用戶啓動我的應用程序時,我有一個ViewController,它具有按鈕,用戶觸摸一個按鈕後,它將轉到另一個View Controller。
我的問題是如何在當前的ViewController中顯示一個新的ViewController。
感謝
我想在ipad上實現下面的GUI。一個ViewController轉到另一個ViewController
當用戶啓動我的應用程序時,我有一個ViewController,它具有按鈕,用戶觸摸一個按鈕後,它將轉到另一個View Controller。
我的問題是如何在當前的ViewController中顯示一個新的ViewController。
感謝
您需要定義在頭一個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];
}
我加了上面的代碼在我的應用程序,但仍然無法正常工作。還有其他代碼需要修改嗎? – cs221313 2011-02-15 09:07:28