Initializer

init(_:isOn:)

Creates a toggle that generates its label from a string.

Declaration 宣言

init<S>(_ title: S, isOn: Binding<Bool>) where S : StringProtocol
Available when Label is Text. LabelTextである時に利用可能です。

Parameters パラメータ

title

A string that describes the purpose of the toggle.

isOn

A binding to a property that indicates whether the toggle is on or off.

Discussion 議論

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

To initialize a toggle with a localized string key, use init(_:isOn:) instead.

See Also 参照

Creating a Toggle トグルを作成する