Initializer

init(_:role:action:)

Creates a button with a specified role that generates its label from a localized string key.

Declaration 宣言

init(_ titleKey: LocalizedStringKey, role: ButtonRole?, 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の目的を記述します。

role

An optional semantic role describing the button. A value of nil means that the button doesn’t have an assigned role.

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(_:role:action:) instead.

See Also 参照

Creating a Button with a Role