3
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Swift4.0→4.2でEnumEnumerableが不要になった

Last updated at Posted at 2018-10-10

iOS12.0 対応で Xcode 10 にして Swift 4.2 対応した。
基本的にAll Fix Issuesでポチポチやれば良いが、
Enumのcountが取れずテーブルビューが表示されなくなった。
これまではEnumを自前で実装する必要があったので、
EnumEnumerableを使っていたが、Swift4.2の新機能CaseIterableでいけることに気付いた。

#使ってたやつ
EnumEnumerable

EnumEnumerable.swift
protocol EnumEnumerable {
    associatedtype Case = Self
}

extension EnumEnumerable where Case: Hashable {
    private static var iterator: AnyIterator<Case> {
        var n = 0
        return AnyIterator {
            defer { n += 1 }
            
            let next = withUnsafePointer(to: &n) {
                UnsafeRawPointer($0).assumingMemoryBound(to: Case.self).pointee
            }
            return next.hashValue == n ? next : nil
        }
    }
    
    static func enumerate() -> EnumeratedSequence<AnySequence<Case>> {
        return AnySequence(self.iterator).enumerated()
    }
    
    static var cases: [Case] {
        return Array(self.iterator)
    }
    
    static var count: Int {
        return self.cases.count
    }
}

#CaseIterable

リファレンス: https://developer.apple.com/documentation/swift/caseiterable

Swift 4.2 では enum の件数が自前で実装しなくてもとれるようになった。


enum Element: CaseIterable { case hoge, piyo, fuga, hogehoge }

Element.allCases         // returns some Collection whose Iterator.Element is Element
Element.allCases.count   // returns 4
Array(Element.allCases)  // returns [hoge, piyo, fuga, hogehoge]

#結論

  • EnumEnumerable削除
  • "EnumEnumerable" → "CaseIterable"にReplace
  • 一度ビルドしてエラーの箇所を.count→.allCases.countに修正

.countをReplaceで一気にやれればいいけど、Enum以外も引っかかってしまうのでそこはちょっと面倒でした。

3
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?