distance(from:to :)’不可用:任何String视图索引转换都可能在Swift 4中失败;请打开可选索引

前端之家收集整理的这篇文章主要介绍了distance(from:to :)’不可用:任何String视图索引转换都可能在Swift 4中失败;请打开可选索引前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我试图将我的应用程序迁移到 Swift 4,Xcode 9.我收到此错误.它来自第三方框架.

distance(from:to:)’ is unavailable: Any String view index conversion can fail in Swift 4; please unwrap the optional indices

func nsRange(from range: Range<String.Index>) -> NSRange {
    let utf16view = self.utf16
    let from = range.lowerBound.samePosition(in: utf16view)
    let to = range.upperBound.samePosition(in: utf16view)
    return NSMakeRange(utf16view.distance(from: utf16view.startIndex,to: from),// Error: distance(from:to:)' is unavailable: Any String view index conversion can fail in Swift 4; please unwrap the optional indices
                       utf16view.distance(from: from,to: to))// Error: distance(from:to:)' is unavailable: Any String view index conversion can fail in Swift 4; please unwrap the optional indices
}
你可以简单地打开这样的可选索引:
func nsRange(from range: Range<String.Index>) -> NSRange? {
    let utf16view = self.utf16
    if let from = range.lowerBound.samePosition(in: utf16view),let to = range.upperBound.samePosition(in: utf16view) {
       return NSMakeRange(utf16view.distance(from: utf16view.startIndex,utf16view.distance(from: from,to: to))
    }
    return nil
}
原文链接:https://www.f2er.com/swift/319491.html

猜你在找的Swift相关文章