xcode6で空のアプリを作成するテンプレートがなくなっていますが、
下記のようにすれば空から作成できるようです。
1. Main.storyboardと、LaunchScreen.xibの2ファイルをプロジェクトから削除する。
2. プロジェクト設定の「General」→「Deployment Info」で、「Main Interface」を空文字にする。
3. AppDelegate.mの、「didFinishLaunchingWithOptions」に下記を記載する。
1 2 3 4 5 6 7 8 9 10 |
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { // StoryBoardを使わないコード self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]]; UIViewController* viewController = [[UIViewController alloc] init]; self.window.rootViewController = viewController; [self.window makeKeyAndVisible]; return YES; } |
Leave a comment