distance(from:to :)’不可用:任何String视图索引转换都可能在
发布时间:2020-12-14 05:31:55 所属栏目:百科 来源:网络整理
导读:我试图将我的应用程序迁移到 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: RangeString.In
我试图将我的应用程序迁移到
Swift 4,Xcode 9.我收到此错误.它来自第三方框架.
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 } (编辑:李大同) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |
推荐文章
站长推荐
热点阅读