0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

StoryBoardの代わりにXibを使う第一歩

Posted at

環境

Xcode12.3

ゴール

StoryBoardを削除し、Xibから起動する。

プロジェクトを作成

スクリーンショット 2021-01-01 14.06.59.png

ViewControllerとStoryBoardを削除

ViewController.SwiftとMain.storyBoardを選択 > 右クリック > Delete > Move to Trash

Info.plistの設定

(1) Main storyboard file base name > 削除

(2) Application Scene Manifest > Scene Configuration > Application Session Role > Item 0 (Default Configuration) > Storyboard Name > 削除
<注意>(2)も削除しないとエラーになってしまします。

ViewControllerとXibファイルを作成

New File > Cocoa Touch Class > Subclass of: UIViewContoroller > Also create XIB file にチェックを入れる > Next > Create

スクリーンショット 2021-01-01 14.40.28.png
ファイルを2つ作成する事ができました。

スクリーンショット 2021-01-01 14.42.53.png 今回は起動した時にわかり安いようにBackgroundに青色を設定しておきます。

SceneDelegate.swiftを設定

func scene(_ scene: UIScene, willConnectTo session: UISceneSession, options connectionOptions: UIScene.ConnectionOptions)で起動時に表示される画面をXibファイルに対応しているViewContorollerにします。

SceneDelegate.swift
func scene(_ scene: UIScene, willConnectTo session: UISceneSession, options connectionOptions: UIScene.ConnectionOptions) {
        guard let _ = (scene as? UIWindowScene) else { return }
        //ここから下追記
        let window = UIWindow(windowScene: scene as! UIWindowScene)
        self.window = window
        window.makeKeyAndVisible()
        let xibViewController = XibViewController()
        window.rootViewController = xibViewController
        
    }

シュミレーター起動

スクリーンショット 2021-01-01 15.13.28.png 先ほど設定した、背景が青のXibがしっかり起動しました。

参考

StoryBoardの代わりにxibで画面を実装する
【Swift】iOS13でStoryBoardではなくXibから起動する

0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?