Swift   发布时间:2022-03-31  发布网站:大佬教程  code.js-code.com
大佬教程收集整理的这篇文章主要介绍了Swift 3 – PHFetchResult – 枚举对象 – 模糊使用’枚举对象’大佬教程大佬觉得挺不错的,现在分享给大家,也给大家做个参考。

概述

不太明白为什么我在“ Swift 3”中使用“枚举对象”模糊. let collections = PHAssetCollection.fetchAssetCollections(with: .moment, subtype: .any, options: nil) collections.enumerateObjects { (collection, start, stop) in
不太明白为什么我在“ Swift 3”中使用“枚举对象”模糊.
let collections = PHAssetCollection.fetchAssetCollections(with: .moment,subtype: .any,options: nil)

    collections.enumerateObjects { (collection,start,stop) in
        collection as! PHAssetCollection
        let assets = PHAsset.fetchAssets(in: collection,options: nil)
        assets.enumerateObjects({ (object,count,stop) in
            content.append(object)
        })

    }

有什么想法吗?此代码在Swift 2.2中正常工作

我已经碰到了这几次,这似乎是Swift的尾随关闭语法的一个问题.包括闭包参数周围的括号应该做的诀窍:
collections.enumerateObjects({ (collection,stop) in
    collection as! PHAssetCollection
    let assets = PHAsset.fetchAssets(in: collection,options: nil)
    assets.enumerateObjects({ (object,stop) in
        content.append(object)
    })

})

编辑:请参阅rin@R_936_2301@的答案,解释为什么会发生这种情况.

大佬总结

以上是大佬教程为你收集整理的Swift 3 – PHFetchResult – 枚举对象 – 模糊使用’枚举对象’全部内容,希望文章能够帮你解决Swift 3 – PHFetchResult – 枚举对象 – 模糊使用’枚举对象’所遇到的程序开发问题。

如果觉得大佬教程网站内容还不错,欢迎将大佬教程推荐给程序员好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。