http://www.raywenderlich.com/の iReporter チュートリアル アプリのコードを使用しています。
StreamScreen.m でこのコードを取得しました。
-(void)refreshStream {
//just call the "stream" command from the web API
[[API sharedInstance] commandWithParams:[NSMutableDictionary dictionaryWithObjectsAndKeys:@"stream", @"command", nil] onCompletion:^(NSDictionary *json) {
//got stream
[self showStream:[json objectForKey:@"result"]];
}];
}
JSONの結果をテーブルビューに入れるにはどうすればよいですか。スクロールビューの代わりにテーブルビューを使用したい。