gpt4 book ai didi

Swift 2.0 : Type of Expression is ambiguous without more context? 就地排序

转载 作者:行者123 更新时间:2023-11-30 10:11:33 24 4
gpt4 key购买 nike

此错误发生在 SWIFT 2.0 中。有很多类似的错误消息,但我无法将它们与我的代码匹配:

class fileObj : Comparable {
var URL = NSURL()

var path = String()
var filename = String()
var fileExtension = String()
...
}

...
var images = [fileObj]() // array of all files (images)

images.sortInPlace( { $0.URL.absoluteString! > $1.URL.absoluteString! } ) // sort by name

最后一行导致错误消息,表明 $0 错误。有什么想法吗?

最佳答案

NSURL 的 absoluteString是非可选的,您必须强制打开它。

重写排序如下

    images.sortInPlace( { $0.URL.absoluteString > $1.URL.absoluteString } )

关于Swift 2.0 : Type of Expression is ambiguous without more context? 就地排序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32764982/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com