我正在使用来自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 的结果放入 tableview。我想使用表格视图而不是滚动视图。