Swift 3.0
Quase idêntico ao Swift 2.0. OptionSetType foi renomeado para OptionSet e as enumerações são escritas em minúsculas por convenção.
struct MyOptions : OptionSet {
let rawValue: Int
static let firstOption = MyOptions(rawValue: 1 << 0)
static let secondOption = MyOptions(rawValue: 1 << 1)
static let thirdOption = MyOptions(rawValue: 1 << 2)
}
Em vez de fornecer uma none
opção, a recomendação do Swift 3 é simplesmente usar um literal de matriz vazio:
let noOptions: MyOptions = []
Outro uso:
let singleOption = MyOptions.firstOption
let multipleOptions: MyOptions = [.firstOption, .secondOption]
if multipleOptions.contains(.secondOption) {
print("multipleOptions has SecondOption")
}
let allOptions = MyOptions(rawValue: 7)
if allOptions.contains(.thirdOption) {
print("allOptions has ThirdOption")
}
Swift 2.0
No Swift 2.0, as extensões de protocolo cuidam da maior parte do padrão, agora importadas como uma estrutura em conformidade OptionSetType
. ( RawOptionSetType
desapareceu a partir do Swift 2 beta 2.) A declaração é muito mais simples:
struct MyOptions : OptionSetType {
let rawValue: Int
static let None = MyOptions(rawValue: 0)
static let FirstOption = MyOptions(rawValue: 1 << 0)
static let SecondOption = MyOptions(rawValue: 1 << 1)
static let ThirdOption = MyOptions(rawValue: 1 << 2)
}
Agora podemos usar semântica baseada em conjunto com MyOptions
:
let singleOption = MyOptions.FirstOption
let multipleOptions: MyOptions = [.FirstOption, .SecondOption]
if multipleOptions.contains(.SecondOption) {
print("multipleOptions has SecondOption")
}
let allOptions = MyOptions(rawValue: 7)
if allOptions.contains(.ThirdOption) {
print("allOptions has ThirdOption")
}
Swift 1.2
Olhando para as opções de Objective-C que foram importados por Swift ( UIViewAutoresizing
, por exemplo), podemos ver que opções são declarados como um struct
em conformidade com o protocolo RawOptionSetType
, que por conforma por sua vez a _RawOptionSetType
, Equatable
, RawRepresentable
, BitwiseOperationsType
, e NilLiteralConvertible
. Podemos criar nossos próprios assim:
struct MyOptions : RawOptionSetType {
typealias RawValue = UInt
private var value: UInt = 0
init(_ value: UInt) { self.value = value }
init(rawValue value: UInt) { self.value = value }
init(nilLiteral: ()) { self.value = 0 }
static var allZeros: MyOptions { return self(0) }
static func fromMask(raw: UInt) -> MyOptions { return self(raw) }
var rawValue: UInt { return self.value }
static var None: MyOptions { return self(0) }
static var FirstOption: MyOptions { return self(1 << 0) }
static var SecondOption: MyOptions { return self(1 << 1) }
static var ThirdOption: MyOptions { return self(1 << 2) }
}
Agora podemos tratar esse novo conjunto de opções MyOptions
, exatamente como descrito na documentação da Apple: você pode usar a enum
sintaxe-like:
let opt1 = MyOptions.FirstOption
let opt2: MyOptions = .SecondOption
let opt3 = MyOptions(4)
E também se comporta como esperamos que as opções se comportem:
let singleOption = MyOptions.FirstOption
let multipleOptions: MyOptions = singleOption | .SecondOption
if multipleOptions & .SecondOption != nil { // see note
println("multipleOptions has SecondOption")
}
let allOptions = MyOptions.fromMask(7) // aka .fromMask(0b111)
if allOptions & .ThirdOption != nil {
println("allOptions has ThirdOption")
}
Eu construí um gerador para criar um conjunto de opções Swift sem toda a localização / substituição.
Mais recentes: Modificações para o Swift 1.1 beta 3.
RawOptionsSetType
: nshipster.com/rawoptionsettype