xcodeでstoryboardを使わない開発
2278 ワード
single view applicationを選択し、sotyboardを削除する。
その後、info.plistのstoryboradの欄を空白にする
AppDelegate.swift
@UIApplicationMain
class AppDelegate: UIResponder, UIApplicationDelegate {
var window: UIWindow?
func application(application: UIApplication, didFinishLaunchingWithOptions launchOptions: [NSObject: AnyObject]?) -> Bool {
self.window = UIWindow(frame: UIScreen.mainScreen().bounds)
self.window?.rootViewController = ViewController()
self.window?.makeKeyAndVisible()
return true
}
上記のように記述するとstoryboardなしで開発を始められる
Author And Source
この問題について(xcodeでstoryboardを使わない開発), 我々は、より多くの情報をここで見つけました https://qiita.com/ktr17/items/c0529b8c8e66d8ff4b80著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .