macOS/iOS API解説

iOS , Mac アプリケーション開発のために使われる主要フレームワークの日本語情報です。2010年代に書かれた内容です。今後更新はありません。

目次

TextField

INDEX>SwiftUI > Views and Controls

テキストフィールド

Swift

struct TextField<Label> where Label : View

解説

A view that displays one or more lines of read-only text.

クラス

使用可能

参照

更新時のバージョン

関連記事(外部サイト)

例文


Swift

@State private var name = ""
    
    var body: some View {
        VStack {
            TextField("your name?", text: $name)
                .textFieldStyle(RoundedBorderTextFieldStyle())
                .padding()
            Text("Hello, World!")
                       .frame(maxWidth: .infinity, maxHeight: .infinity)
            
        }
        
        
    }