3

我正在构建一个 RSS 阅读器应用程序,遵循教程等等。

到目前为止,我已经构建了一个名为 blogPost 的自定义类,它存储了帖子名称和帖子作者,并具有基于名称的指定初始化程序。

我试图在我的 for 循环中提取帖子的缩略图,并将其显示在我当前显示标题和作者属性的单元格中。

我成功地提取了图像 URL 并从 JSON 中解析了它,但似乎无法将图像存储在 UIImage 中。

//Custom header for BlogPost

@interface BlogPost : NSObject
@property (nonatomic, strong) NSString *title;
@property (nonatomic, strong) NSString *author;
@property (nonatomic, strong) UIImage *image;

// Designated Initializer
- (id) initWithTitle:(NSString *)title;

+ (id) blogPostWithTitle:(NSString *)tile;
@end

这是 tableViewController

[super viewDidLoad];

NSURL *blogUrl = [NSURL URLWithString:@"http://www.wheninmanila.com/api/get_recent_summary/"];
NSData *jsonData = [NSData dataWithContentsOfURL:blogUrl];
NSError *error = nil;

NSDictionary *dataDictionary = [NSJSONSerialization JSONObjectWithData:jsonData options:0 error:&error];

self.blogPosts = [NSMutableArray array];

NSArray *blogPostsArray = [dataDictionary objectForKey:@"posts"];

for (NSDictionary *bpDictionary in blogPostsArray) {
    BlogPost *blogPost = [BlogPost blogPostWithTitle:[bpDictionary objectForKey:@"title"]];
    blogPost.author = [bpDictionary objectForKey:@"author"];

    NSURL *thumbURL = [bpDictionary objectForKey:@"thumbnail"];
    NSData *thumbData = [NSData dataWithContentsOfURL:thumbURL];

    blogPost.image = [[UIImage alloc] initWithData:thumbData];


    [self.blogPosts addObject:blogPost];
}
4

2 回答 2

4

更改此行:

NSURL *thumbURL = [bpDictionary objectForKey:@"thumbnail"];

对此:

NSURL *thumbURL = [NSURL urlWithString:[bpDictionary objectForKey:@"thumbnail"]];

字典中的值将是NSStrings,这与NSURL's 不同。

于 2013-03-20T08:38:17.110 回答
3

您正在使用NSURL而不是 aNSString并且NSString不响应选择器isFileURL(这就是您得到异常的原因)。我假设您的缩略图是一个字符串,因此您应该将其获取为NSString并将其转换NSURL为如下:

NSString *thumbAsString = [bpDictionary objectForKey:@"thumbnail"];
NSURL *thumbURL = [NSURL URLWithString:thumbAsString];
于 2013-03-20T08:41:50.363 回答