0
我正在使用來自http://www.raywenderlich.com/的iReporter教程應用程序的一些代碼。如何啓動UITableView
我得到這個代碼在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。我想使用tableview而不是scrollview。
看看我寫回信呃.... – Jitendra
@ user2908800考慮到你的問題實際上是關於[JSON](https://en.wikipedia.org/wiki/JSON),你應該更仔細地標題和標記。 –