外部サーバーのjsonファイルからMWphotobrowserで写真、写真のキャプション、写真のサムネイルなどを取得する方法を見つけようとしています。
viewDidLoad には、次のコードがあります。
- (void)viewDidLoad {
NSURL *url = [NSURL URLWithString:@"https://s3.amazonaws.com/mobile-makers-lib/superheroes.json"];
NSURLRequest *request = [NSURLRequest requestWithURL:url];
[super viewDidLoad];
[NSURLConnection sendAsynchronousRequest:request
queue:[NSOperationQueue mainQueue]
completionHandler:^(NSURLResponse *response, NSData *data, NSError *connectionError)
{
NSLog(@"Back from the web");
}];
NSLog(@"Just made the web call");
}
Case3 MWphotobrowser の Menu.m には、次のコードがあります。
case 3: {
photo.caption = [self.result valueForKeyPath:@"name"];
NSArray * photoURLs = [self.result valueForKeyPath:@"avatar_url"];
NSString * imageURL = [photoURLs objectAtIndex:indexPath.row];
[photos addObject:[MWPhoto photoWithURL:[NSURL URLWithString:imageURL]]];
enableGrid = NO;
break;
}
見逃した方のために、私が使用している JSON ファイルはhttps://s3.amazonaws.com/mobile-makers-lib/superheroes.jsonです。
私が微調整しても機能しないようですが、これを修正する方法はありますか?