0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

SwiftでコードのみでUIを実装する方法【Storyboardなし】

Posted at

はじめに

Storyboard や XIB を使わずに View を作成し、Auto Layout をコードで設定する方法。

1. プロジェクトの準備

まず、新しい iOS アプリプロジェクトを作成し、Main.storyboard を削除する。
そして SceneDelegate.swift でエントリーポイントを設定。

SceneDelegate.swift
import UIKit

class SceneDelegate: UIResponder, UIWindowSceneDelegate {
    var window: UIWindow?

    func scene(
        _ scene: UIScene, 
        willConnectTo session: UISceneSession, 
        options connectionOptions: UIScene.ConnectionOptions
    ) {
        guard let windowScene = (scene as? UIWindowScene) else { return }
        
        window = UIWindow(windowScene: windowScene)
        //最初に表示するViewControllerを設定
        window?.rootViewController = ViewController() 
        window?.makeKeyAndVisible()
    }
}

2. シンプルな View の作成

次に、ViewController.swift を編集して、コードで UI を実装する。

ViewController.swift
import UIKit

class ViewController: UIViewController {
    // ラベルを作成
    private let label: UILabel = {
        let label = UILabel()
        label.text = "Hello, Swift UI!"
        label.textAlignment = .center
        label.font = UIFont.systemFont(ofSize: 24, weight: .bold)
         // Auto Layout を使用するために false にする(※)
        label.translatesAutoresizingMaskIntoConstraints = false
        return label
    }()

    override func viewDidLoad() {
        super.viewDidLoad()
        view.backgroundColor = .white
        setupUI()
    }

    private func setupUI() {
        // ラベルを画面のビューに追加
        view.addSubview(label)

        // Auto Layout の制約を設定(画面の中央に配置)
        NSLayoutConstraint.activate([
            label.centerXAnchor.constraint(equalTo: view.centerXAnchor),
            label.centerYAnchor.constraint(equalTo: view.centerYAnchor)
        ])
    }
}

※AutoLayoutを自分で設定(コードでUIを実装)する場合、translatesAutoresizingMaskIntoConstraintsをfalseにしないとレイアウトが競合する。

実行結果

スクリーンショット 2025-03-08 17.39.29.png

終わり

・Storyboard を使わずに UIWindow をセットアップ
・コードで UILabel を作成
・NSLayoutConstraint で Auto Layout を設定

コードだけで UI を作成すると、管理しやすく、Git での差分管理もしやすくなる。

0
0
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
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?