この質問は回答されている可能性があります。はいの場合は、リンクを共有してください。
シングルビューアプリケーションを作成しました。正常に動作しますが、新しいビューを追加し、ボタンをクリックすると、新しいビューが表示されるようになります。
これはクリックアクションのコードです、
SettingsViewController *settingsViewController = [[SettingsViewController alloc] initWithNibName:@"SettingsViewController" bundle:[NSBundle mainBundle]];
[self.navigationController pushViewController:settingsViewController animated:YES];
デフォルトのViewControllerは、.hファイルでは次のようになります。
@interface ViewController : UIViewController<UIImagePickerControllerDelegate, UINavigationControllerDelegate>
SettingsViewController.mにはデフォルトがあります
- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil{}
このように「シングルビューアプリケーション」に別のビューを追加できますか、それともプロジェクトに別のテンプレートを選択する必要がありますか?
ありがとう。