#手順
-
Info.plist
内のMain storyboard file base name
の値を空白にする - General - Deployment Info 内の
Main Interface
の値を空白にする -
AppDelegate.m
に以下のコードを記述する
AppDelegate.m
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
// UIWindowの生成
self.window = [[UIWindow alloc] initWithFrame:[UIScreen mainScreen].bounds];
self.window.backgroundColor = [UIColor whiteColor];
// 最初に表示されるViewControllerを生成
FirstViewController *fvc = [[FirstViewController alloc] init];
self.window.rootViewController = fvc;
[self.window makeKeyAndVisible];
return YES;
}
#NavigationControllerを使う場合
上記と同様に、AppDelegate.m
に以下のコードを記述します。
AppDelegate.m
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
self.window = [[UIWindow alloc] initWithFrame:[UIScreen mainScreen].bounds];
self.window.backgroundColor = [UIColor whiteColor];
FirstViewController *fvc = [[UIViewController alloc] init];
// 最初に表示したいViewControllerを指定してインスタンス生成する
UINavigationController *nc = [[UINavigationController alloc] initWithRootViewController:fvc];
self.window.rootViewController = nc;
[self.window makeKeyAndVisible];
return YES;
}
画面遷移する際には以下のようにします。
FirstViewController内に配置したボタンを押した際に画面遷移することを想定しています。
self
はFirstViewControllerです。
FirstViewController.m
- (IBAction)pushButtonPressed:(UIButton *)sender {
SecondViewController *svc = [[SecondViewController alloc] init];
[self.navigationController pushViewController:svc animated:YES];
}