Initializer

init(_:action:)

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

Declaration 宣言

init<S>(_ title: S, 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の目的を記述します。

action

The action to perform when the user triggers 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(_:action:) instead. ボタンをあるローカライズされた文字列で初期化するには、init(_:action:)を代わりに使います。

See Also 参照

Creating a Button ボタンを作成する