1

会場をに保存しようとしていNSArrayます。Venue はNSDictionaryResponse 内の配列です。NSArrayテーブルに入力できるように、すべての会場が必要です。

NSURL *url = [[NSURL alloc] initWithString:@"https://api.foursquare.com/v2/venues/search?ll=40.7,-74&query=dog&limit=10"];
NSURLRequest *request = [[NSURLRequest alloc] initWithURL:url];
AFJSONRequestOperation *operation = [AFJSONRequestOperation JSONRequestOperationWithRequest:request success:^(NSURLRequest *request, NSHTTPURLResponse *response, id JSON) {
    NSDictionary *responseData = [JSON objectForKey:@"response"];
    self.venues = responseData[@"venues"];

    [self.tableView setHidden:NO];
    [self.tableView reloadData];
} failure:^(NSURLRequest *request, NSHTTPURLResponse *response, NSError *error, id JSON) {
    NSLog(@"Request Failed with Error: %@, %@", error, error.userInfo);
}];
[operation start];

四角部分

response: {
    venues: [{
        id: "4ea2c02193ad755e37150c15"
        name: "The Grey Dog"
        contact: {
            phone: "+12129661060"
            formattedPhone: "+1 212-966-1060"
        }
        location: {
            address: "244 Mulberry St"
            crossStreet: "btwn Spring & Prince St"
            lat: 40.723096
            lng: -73.995774
            distance: 2595
            postalCode: "10012"
            city: "New York"
            state: "NY"
            country: "United States"
            cc: "US"
        }

フォースクエア API へのリンク

4

1 に答える 1

2

すべての会場を保持するために新しい配列は必要ありません。

NSDictionaryまず、次のようなグローバルを作成します。

NSDictionary* venuesDict;

@property (nonatomic, retain) NSDictionary* venuesDict;

そして合成します。次に、上記のコードで次のように割り当てることができます。

venuesDict = [[JSON objectForKey:@"response"] objectForKey:@"venues"];
NSLog(@"%@", venuesDict); //everything should work up to here!

質問に投稿したとおりに NSLog が出力を出力すると仮定すると (ただし、会場を最初のオブジェクトとして)、次のようにテーブルに入力できます。

#pragma mark - Table view data source

- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
    // Return the number of sections.
    return 1;
}

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
    // Return the number of rows in the section.
    return [[venuesDict objectForKey:@"venues"] count];
}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    static NSString *CellIdentifier = @"Cell";
    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier forIndexPath:indexPath];

    cell.textLabel.text = [[venuesDict objectForKey@"venues"] objectForKey:@"name"];

    return cell;
}
于 2013-02-20T13:32:56.137 に答える