我試圖深入到一個嵌套的JSon數組,我已經成功地完成了上面的級別,但我不能解決如何獲得更深入的。NSJSONSerialization Json嵌套Sub
我需要登錄圖片@url我附上了一個屏幕顯示,以顯示我需要它去的地方。
謝謝:)
- (void)viewDidLoad
{
[super viewDidLoad];
[UIApplication sharedApplication].networkActivityIndicatorVisible = YES;
NSURL *url = [NSURL URLWithString:@"http://api.storageroomapp.com/accounts/511a4f810f66026b640007b8/collections/511a51580f66023bff000ce9/entries.json?auth_token=Zty6nKsFyqpy7Yp5DP1L&preview_api=1"];
NSURLRequest *request = [NSURLRequest requestWithURL:url];
[[NSURLConnection alloc] initWithRequest:request delegate:self];
}
-(void)connectionDidFinishLoading:(NSURLConnection *) connection{
[UIApplication sharedApplication].networkActivityIndicatorVisible = NO;
NSDictionary *dictionary = [NSJSONSerialization JSONObjectWithData:data options:nil error:nil];
NSDictionary *arrayDictionary = dictionary[@"array"];
news = arrayDictionary[@"resources"];
[tableView reloadData];
}
-(void) connection:(NSURLConnection *)connection didFailWithError:(NSError *)error{
UIAlertView *errorView = [[UIAlertView alloc] initWithTitle:@"Error" message:@"The data could not be downloaded - please make sure you're connected to either 3G or Wi-FI" delegate:nil cancelButtonTitle:@"Dismiss" otherButtonTitles:nil];
[errorView show];
[UIApplication sharedApplication].networkActivityIndicatorVisible = NO;
}
-(int)numberOfSectionsInTableView:(UITableView *)tableView{
return 1;
}
-(int)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section{
return [news count];
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{
NSDictionary *newsItem = news[[indexPath row]];
NSString *title = newsItem[@"title"];
NSString *date = newsItem[@"date"];
NSString *thumb = newsItem[@"tablethumb"];
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"MainCell"];
if (cell == nil) {
cell = [[UITableViewCell alloc]initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:@"MainCell"];
[[cell textLabel] setText:title];
[[cell detailTextLabel] setText:date];
if((NSNull *)thumb == [NSNull null]){
NSLog(@"no image");
} else{
NSLog(@ "image = %@", thumb);
}
}
cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;
return cell;
}
感謝您的快速回應,我試過上面的代碼和我的控制檯說。 image =(null),然後我嘗試@「tablethumb。@ url」,並在NSUnkownKeyException的最後一個日誌中出現錯誤。 – Brent 2013-02-22 11:44:17
是的,只是意識到你有實際的'@'作爲前綴。請參閱我的編輯答案 – Alladinian 2013-02-22 11:48:04
@BrentFrench另請注意,在您的代碼中,您將'tablethumb'視爲字符串,而在您的json中將其視爲字典... – Alladinian 2013-02-22 11:51:20