Initializer

init(_:action:)

Creates a button that generates its label from a localized string key. あるボタンを作成します、それはそれのラベルをあるローカライズ文字列キーから生成するものです。

Declaration 宣言

init(_ titleKey: LocalizedStringKey, action: @escaping () -> Void)
Available when Label is Text. LabelTextである時に利用可能です。

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 ボタンを作成する