severからJSONをロードして、それをUITableViewに表示しようとしています。要求はうまく行くが、私は[tableView reloadData]
メソッドが呼び出されたときにアプリケーションがクラッシュするテーブルビューにデータを追加しようとすると呼び出されます。 UITableViewメソッドで変数jsonArray
の参照があるので、TableViewはその変数の内容を表示します。これを行うにはこれが最善の方法ですか、何が間違っていますか?iITableViewでJSONを非同期的にiPhoneにロードする
接続
NSURLConnection *theConnection=[[NSURLConnection alloc] initWithRequest:theRequest delegate:self];
メインHTTPコールバック
- (void)connectionDidFinishLoading:(NSURLConnection *)connection
{
[connection release];
NSString *responseString = [[NSString alloc] initWithData:responseData encoding:NSUTF8StringEncoding];
[responseData release];
//Declare the parser
SBJsonParser *parser = [[SBJsonParser alloc] init];
jsonArray = [parser objectWithString:responseString];
[tableView reloadData];
[parser release];
[responseString release];
}
エラー
2011-07-07 14:42:56.923 Viiad[16370:207] -[__NSSet0 objectAtIndex:]: unrecognized selector sent to instance 0x5a4a0b0
2011-07-07 14:42:56.925 Viiad[16370:207] *** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[__NSSet0 objectAtIndex:]: unrecognized selector sent to instance 0x5a4a0b0'
EDIT
UITableViewMethods
// Customize the appearance of table view cells.
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
static NSString *CellIdentifier = @"Cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier] autorelease];
}
NSArray *results = [[jsonArray valueForKey:@"Rows"] valueForKey:@"name"];
cell.textLabel.text = (NSString *)[results objectAtIndex:indexPath.row];
return cell;
}
jsonArrayがNSArrayではない可能性があります。アプリはtableView:cellForRowAtIndexPath:メソッドで失敗しています。それを投稿できますか? – ageektrapped
私はちょうどそれを追加しました。ありがとう! –