var rawValue : Int8
The corresponding value of the raw type.
生の型の対応している値。
typealias RawValue
The raw type that can be used to represent all values of the conforming type.
準拠している型の全ての値を表すために使われることができる生の型。
Availability 有効性
Technology
init?(rawValue: Int8
)
rawValue
The raw value to use for the new instance.
If there is no value of the type that corresponds with the specified raw value, this initializer returns nil
. For example:
例えば:
enum PaperSize: String {
case A4, A5, Letter, Legal
}
print(PaperSize(rawValue: "Legal"))
// Prints "Optional("PaperSize.Legal")"
print(PaperSize(rawValue: "Tabloid"))
// Prints "nil"
var rawValue : Int8
typealias RawValue