此問題可能已得到解答,如果是的話,請分享鏈接。添加和導航到單個應用程序中的新視圖
我已經創建了一個單一視圖應用程序,它工作正常,但現在我添加了一個新視圖並點擊按鈕,希望顯示新視圖。
這是點擊動作的代碼,
SettingsViewController *settingsViewController = [[SettingsViewController alloc] initWithNibName:@"SettingsViewController" bundle:[NSBundle mainBundle]];
[self.navigationController pushViewController:settingsViewController animated:YES];
默認視圖控制器現在看起來像這樣在.h文件中
@interface ViewController : UIViewController<UIImagePickerControllerDelegate, UINavigationControllerDelegate>
的SettingsViewController.m有一個默認
- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil{}
我可以添加另一個視圖到「Single View Application」嗎?或者我應該選擇另一個模板f或我的項目?
謝謝。
你是用故事板或Interface Builder來建立你的看法還是你做這一切編程? – 2012-07-23 02:34:03
我創建了一個沒有故事板的新項目,並使用Interface Builder來設計視圖。 – MTahir 2012-07-23 02:39:05
我建議你先從一個空的應用程序開始,然後從那裏開始。 – 2012-07-23 15:56:19