ストーリーボードを使用せずに新しいSwiftプロジェクトを作成するにはどうすればよいですか?
XCode 6で新しいプロジェクトを作成しても、ストーリーボードを無効にすることはできません。SwiftまたはObjective-Cのみを選択して、Core Dataを使用するかどうかを選択できます。 ストーリーボードを削除し、プロジェクトからメインストーリーボードを削除して、didFinishLaunchingからウィンドウを手動で設定してみました AppDelegateにはこれがあります: class AppDelegate: UIResponder, UIApplicationDelegate { var window: UIWindow var testNavigationController: UINavigationController func application(application: UIApplication, didFinishLaunchingWithOptions launchOptions: NSDictionary?) -> Bool { testNavigationController = UINavigationController() var testViewController: UIViewController = UIViewController() self.testNavigationController.pushViewController(testViewController, animated: false) self.window = UIWindow(frame: UIScreen.mainScreen().bounds) self.window.rootViewController = testNavigationController self.window.backgroundColor = UIColor.whiteColor() self.window.makeKeyAndVisible() return true } …