Initializer

init(_:role:action:)

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

Declaration 宣言

init<S>(_ title: S, role: ButtonRole?, action: @escaping () -> Void) where S : StringProtocol
Available when Label is Text. LabelTextである時に利用可能です。

Parameters パラメータ

title

A string 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 interacts with the button.

Discussion 議論

This initializer creates a Text view on your behalf, and treats the title similar to init(_:). See Text for more information about localizing strings. このイニシャライザは、Textビューをあなたの代わりに作成します、そしてタイトルをinit(_:)と同じように扱います。Textを文字列のローカライズについてのさらなる情報として見てください。

To initialize a button with a localized string key, use init(_:role:action:) instead.

See Also 参照

Creating a Button with a Role