Initializer
init(_:action:)
Creates a button that generates its label from a localized string key.
あるボタンを作成します、それはそれのラベルをあるローカライズ文字列キーから生成するものです。
Declaration
宣言
Available when Label
is Text
.
Label
がText
である時に利用可能です。
Parameters
パラメータ
titleKey
The key for the button’s localized title, that describes the purpose of the button’s action
.
ボタンのもつローカライズされたタイトルに対するキー、それはボタンのもつaction
の目的を記述します。
action
The action to perform when the user triggers the button.
ユーザがボタンを作動させる場合に実行するアクション。
Discussion
議論
This initializer creates a Text
view on your behalf, and treats the localized key similar to init(_:tableName:bundle:comment:)
. See Text
for more information about localizing strings.
このイニシャライザは、Text
ビューをあなたに代わって作成します、そしてローカライズされたキーをinit(_:tableName:bundle:comment:)
に似たものと見なします。Text
を文字列のローカライズについてのさらなる情報として見てください。
To initialize a button with a string variable, use init(_:action:)
instead.
ボタンを文字列変数で初期化するには、init(_:action:)
を代わりに使ってください。
See Also
参照
Creating a Button
ボタンを作成する
init<S>(S, action: () -> Void)
Creates a button that generates its label from a string.
あるボタンを作成します、それはそれのラベルをある文字列から生成するものです。
Available when Label
is Text
.
Label
がText
である時に利用可能です。