使用未解析的标识符 'PHAssetMediaTypeImage'

Use of Unresolved Identifier 'PHAssetMediaTypeImage'

我在 swift 中使用 PHAsset。 PHAssetMediaTypeImage 未解决。谁能帮忙。

可以这样解决 PHAssetMediaType.ImagePHAssetMediaType.Video

获取所有资源,然后只获取您需要的范围

    var assets = PHAsset.fetchAssetsWithMediaType(PHAssetMediaType.Image, options: fetchOptions){

}

also check apple documentation

在 swift 中,PHAssetMediaTypeImage 就是 .ImagePHAssetMediaTypeVideo 就是 .Video:

if asset.mediaType == .Image {

}

if asset.mediaType == .Video {

}