init?(rawValue : Int8)
Creates a new instance with the specified raw value.
ある新しいインスタンスをこの指定された生の値で作成します。
typealias RawValue
The raw type that can be used to represent all values of the conforming type.
準拠している型の全ての値を表すために使われることができる生の型。
Availability 有効性
Technology
var rawValue: Int8
{ get }
A new instance initialized with raw
will be equivalent to this instance. For example:
raw
で初期化された新しいインスタンスは、このインスタンスに相当します。例えば:
enum PaperSize: String {
case A4, A5, Letter, Legal
}
let selectedSize = PaperSize.Letter
print(selectedSize.rawValue)
// Prints "Letter"
print(selectedSize == PaperSize(rawValue: selectedSize.rawValue)!)
// Prints "true"
init?(rawValue : Int8)
typealias RawValue