swift Swift中的自定义地图

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了swift Swift中的自定义地图相关的知识,希望对你有一定的参考价值。

//Custom Map functions
//Experimenting with making custom map functions
//Original Map implementation: https://github.com/apple/swift/blob/master/stdlib/public/core/Sequence.swift

extension Sequence {
    func mapToDictionary<T>(_ transform: (Iterator.Element) throws -> (String, T)) rethrows -> [String: T] {
        let initialCapacity = underestimatedCount
        var result = [String: T]()
        var iterator = self.makeIterator()
        
        for _ in 0..<initialCapacity {
            if let element = iterator.next() {
                let kv = try transform(element)
                result[kv.0] = kv.1
            }
        }
        
        while let element = iterator.next() {
            let kv = try transform(element)
            result[kv.0] = kv.1
        }
        return result
    }
}

let array = [1, 2, 3, 4, 5]

let dictionary = array.mapToDictionary { (value) -> (String, Int) in
    return ("\(value)", value)
}

print(dictionary)   //["1": 1, "2": 2, "3":3, "4": 4, "5": 5]

以上是关于swift Swift中的自定义地图的主要内容,如果未能解决你的问题,请参考以下文章

Swift 中的自定义 MKAnnotation 未添加到地图的注释中

Swift - MKAnnotationView 地图引脚的自定义 UIView

swift Swift 4中的自定义JSON编码/解码

swift swift中的自定义随机数运算符

swift swift中的自定义整数运算符,允许您连接整数

Swift 中的自定义 Segue