从JSON中填充UITableView

4

我试图使用json结果填充UITableView。我可以轻松从plist数组加载它,甚至可以看到我的json数据。但是问题在于UITableView永远无法看到json结果。请原谅我,因为这是我第一次使用Objective-C。

在我的.h文件中:

@interface TableViewViewController : UIViewController <UITableViewDataSource, UITableViewDelegate> {
    NSArray *exercises;
    NSMutableData *responseData;

}

在我的.m文件中
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
    return  exercises.count;
}

- (UITableViewCell *)tableView:(UITableView *)tableView 
         cellForRowAtIndexPath:(NSIndexPath *)indexPath {
    //create a cell
    UITableViewCell *cell = [[UITableViewCell alloc]
    initWithStyle:UITableViewCellStyleDefault
    reuseIdentifier:@"cell"];

    // fill it with contnets
    cell.textLabel.text = [exercises objectAtIndex:indexPath.row];
    // return it
    return cell;
}


// Implement viewDidLoad to do additional setup after loading the view, typically from a nib.
- (void)viewDidLoad {       
    responseData = [[NSMutableData data] retain];
    NSURLRequest *request = [NSURLRequest requestWithURL:[NSURL URLWithString:@"http://url_to_json"]];
    [[NSURLConnection alloc] initWithRequest:request delegate:self ];


    // load from plist
    //NSString *myfile = [[NSBundle mainBundle] pathForResource:@"exercise" ofType:@"plist"];
    //exercises = [[NSArray alloc] initWithContentsOfFile:myfile];
    [super viewDidLoad];
}

- (void)connection:(NSURLConnection *)connection didReceiveResponse:(NSURLResponse *)response {
    [responseData setLength:0];
}
- (void)connection:(NSURLConnection *)connection didReceiveData:(NSData *)data {
    [responseData appendData:data];
}

- (void)connection:(NSURLConnection *)connection didFailWithError:(NSError *)error {
    NSLog(@"Connection failed: %@", [error description]);
}

- (void)connectionDidFinishLoading:(NSURLConnection *)connection {
    [connection release];

    NSString *responseString = [[NSString alloc] initWithData:responseData encoding:NSUTF8StringEncoding];
    [responseData release];

    NSDictionary *dictionary = [responseString JSONValue];
    NSArray *response = [dictionary objectForKey:@"response"];

    exercises = [[NSArray alloc] initWithArray:response];
}
3个回答

14

你需要告诉你的表格视图重新加载。尝试添加:

[tableView reloadData];

在您的 -connectionDidFinishLoading 方法结束时。


好的。你的视图控制器是UITableViewController还是UIViewController?你需要一个UITableView的outlet。如果你的视图控制器是UITableViewController,将上面的代码更改为[[self tableView] reloadData];否则,在头文件中声明一个UITableView IBOutlet,并将其命名为tableView并在Interface Builder中连接它。然后代码就应该可以工作了。 - Matt Long

1

使用

[self.tableView reloadData];

0
您可能需要在connectionDidFinishLoading方法的末尾添加以下代码行:
[self.tableView performSelectorOnMainThread:@selector(reloadData) withObject:nil waitUntilDone:NO];

由于connectionDidFinishLoading在不同的线程上执行,所以这将在主线程上刷新UITableView。


网页内容由stack overflow 提供, 点击上面的
可以查看英文原文,
原文链接