使用未解析的标识符 'PHAssetMediaTypeImage'
Use of Unresolved Identifier 'PHAssetMediaTypeImage'
我在 swift 中使用 PHAsset。 PHAssetMediaTypeImage
未解决。谁能帮忙。
可以这样解决 PHAssetMediaType.Image
和 PHAssetMediaType.Video
获取所有资源,然后只获取您需要的范围
var assets = PHAsset.fetchAssetsWithMediaType(PHAssetMediaType.Image, options: fetchOptions){
}
在 swift 中,PHAssetMediaTypeImage
就是 .Image
而 PHAssetMediaTypeVideo
就是 .Video
:
if asset.mediaType == .Image {
}
if asset.mediaType == .Video {
}
我在 swift 中使用 PHAsset。 PHAssetMediaTypeImage
未解决。谁能帮忙。
可以这样解决 PHAssetMediaType.Image
和 PHAssetMediaType.Video
获取所有资源,然后只获取您需要的范围
var assets = PHAsset.fetchAssetsWithMediaType(PHAssetMediaType.Image, options: fetchOptions){
}
在 swift 中,PHAssetMediaTypeImage
就是 .Image
而 PHAssetMediaTypeVideo
就是 .Video
:
if asset.mediaType == .Image {
}
if asset.mediaType == .Video {
}