A string representation of the Boolean value. ブール値の文字列表現。
Initializer
init(_:)
Creates a new Boolean value from the given string.
与えられた文字列から新しいブール値を作成します。
Availability
- iOS 8.0+
- iPadOS 8.0+
- macOS 10.10+
- Mac Catalyst 13.0+
- tvOS 9.0+
- watchOS 2.0+
- Xcode 8.0+
Technology
- Swift Standard Library Swift標準ライブラリ
Declaration 宣言
init?(_ description: String
)
Parameters パラメータ
description
Discussion 解説
If the description
value is any string other than "true"
or "false"
, the result is nil
. This initializer is case sensitive.
このdescription
値が"true"
または"false"
と違う何らかの文字列ならば、結果はnil
です。このイニシャライザは、大文字小文字を区別します。
Relationships 関係
From Protocol 由来プロトコル
See Also 参照
Creating a Boolean From Another Value 別の値からあるブールを作成する
init(Bool)
Creates an instance equal to the given Boolean value.
与えられたブール値と同じインスタンスを作成します。