1
3

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】PlaygroundでPreviewできるらしい

Posted at

はじめに

PlaygroundでViewをPreviewする事ができることを知りました。
スクリーンショット 2023-11-20 20.22.28.png

実装

import SwiftUI
import PlaygroundSupport

struct PlaygroundView: View {
    var body: some View {
        VStack {
            Text("Hello, World!")
            Text("Hello, World!")
            Text("Hello, World!")
            Text("Hello, World!")
            Text("Hello, World!")
        }
        .frame(width: 300, height: 300)
    }
}

PlaygroundPage.current.setLiveView(PlaygroundView())

やりかた

① 右上の5本線のボタンをタップします。
② 「Live View」をタップします。
スクリーンショット 2023-11-20 20.28.25.png

③ 再生ボタンを押して実行します。
スクリーンショット 2023-11-20 20.29.36.png

おわり

簡単なUIの確認とかはPlaygroundで良さそう
今まで毎回新規プロジェクト作ってた、、、

1
3
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
1
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?