Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我试图弄清楚我指向的 ALAssetsGroup 是否托管在/复制到 iCloud 上。没有找到已经提出的问题,我能够弄清楚。
在具有 ALAssetsGroupPropertyType 的组对象上使用 valueForProperty。这将返回一个 NSNumber,它是几个标志的位掩码,包括 ALAssetsGroupPhotoStream。
- (BOOL) isICloudAlbum:(ALAssetsGroup*)group { NSNumber *groupType = [group valueForProperty:ALAssetsGroupPropertyType]; return ([groupType intValue] & ALAssetsGroupPhotoStream) ? YES : NO; }