1

外部サーバーの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です。

私が微調整しても機能しないようですが、これを修正する方法はありますか?

4

1 に答える 1

0
[NSURLConnection sendAsynchronousRequest:request
                               queue:[NSOperationQueue mainQueue]
                   completionHandler:^(NSURLResponse *response, NSData *data, NSError *connectionError)

 {

    // here make sure ur response is getting or not

     if ([data length] >0 && connectionError == nil)
     {

         // DO YOUR WORK HERE


          self.superheroes = [NSJSONSerialization JSONObjectWithData:data options: NSJSONReadingMutableContainers error: &connectionError];

           NSLog(@"data downloaded.==%@",  self.superheroes);

     }
     else if ([data length] == 0 && connectionError == nil)
     {
         NSLog(@"Nothing was downloaded.");
     }
     else if (connectionError != nil){
         NSLog(@"Error = %@", connectionError);
     }



   }];

ここで、サーバーからの応答を取得しているのはNSArray -->NSMutableDictionary です。

Caseシナリオは

case 3: {


        NSDictionary *superhero = [self.superheroes objectAtIndex:indexPath.row];




       photo.caption = superhero[@"name"];

        NSString * imageURL = superhero[@"avatar_url"];

      //  NSArray * photoURLs = superhero[@"avatar_url"];


        [photos addObject:[MWPhoto photoWithURL:[NSURL URLWithString:imageURL]]];




        enableGrid = NO;
        break;

    }

あなたの最終的なアウトプットは

ここに画像の説明を入力

于 2014-09-06T07:10:09.217 に答える