这是我的代码的那一部分:
//Filter photos
photoArray = [self getContentFrom:group withAssetFilter:[ALAssetsFilter allPhotos]];
//Enumerate through the group to get access to the photos.
[contentDictionary setObject:photoArray forKey:@"Photos"];
//Filter videos
videoArray = [self getContentFrom:group withAssetFilter:[ALAssetsFilter allVideos]];
[contentDictionary setObject:videoArray forKey:@"Videos"];
我认为它是一个简单的解决方案。但我在 Apple 的 Objective-c 手册中找不到答案。
一些上下文信息:我正在向我的 iPad 程序添加一项功能,允许用户从照片应用程序导入媒体。以下是以下 4 个错误。谢谢
'ViewController' 没有可见的@interface 声明选择器'getContentFrom:withAssetFilter:
“NSDictionary”没有可见的@interface 声明选择器“setObject:forKey:”
'ViewController' 没有可见的@interface 声明选择器'getContentFrom:withAssetFilter:'
“NSDictionary”没有可见的@interface 声明选择器“setObject:forKey:”
在每个错误上方,它都显示为“ARC语义问题”。