为什么我无法运行reloadData?

时间:2012-03-21 17:39:05

标签: iphone objective-c uitableview uiviewcontroller reloaddata

这是UIViewController。我想在我的表视图上运行reloadData,但它不起作用。

首先,我从另一个视图中调用fromGenre:。我开始NSURLConnection。然后它调用connectionDidFinishLoading:。然后是doParse:。之后,在此函数中,我想调用reloadData。但它没有运行。

- (void)viewDidLoad{
[super viewDidLoad];    
}

//Parse function
-(void)doParse{   
    NSString *jsonString = [[NSString alloc]initWithData:result encoding:NSUTF8StringEncoding];
    data2=[[[[jsonString JSONValue]] objectForKey:@"feed"] objectForKey:@"entry"];
     trackGenre = [[NSMutableArray alloc]init];
    for (NSDictionary *dic in data2) {
        NSString *artistName = [[dic objectForKey:@"im:artist"]objectForKey:@"label"];
         NSMutableDictionary *dicData = [NSMutableDictionary dictionary];
        [dicData setValue:artistName forKey:@"artist"];
        [trackGenre addObject:dicData];
    }
    **//[self.aTableView reloadData];
    /*
     [ self.aTableView performSelectorOnMainThread:@selector( reloadTableView )
                                       withObject:nil
                                    waitUntilDone:YES
     ];*/
    [self performSelectorOnMainThread:@selector(reloadTableView) withObject:nil waitUntilDone:YES];
    //[self reloadTableView];**
}

-(void)reloadTableView{
[[[self view] aTableView] reloadData];
NSLog(@"do reload");
}


- (void)connectionDidFinishLoading:(NSURLConnection *)connection{
//[self doParse];
[self performSelectorOnMainThread:@selector(doParse) withObject:nil waitUntilDone:YES];    
}


-(void)fromGenre:(NSURLRequest *)urlRequest{
NSLog(@"urlRequest:%@",urlRequest);
aConnection = [NSURLConnection connectionWithRequest:urlRequest delegate:self];
}



- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
return 1;
}

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
return trackGenre ? [trackGenre count]:100;
}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{
static NSString *CellIdentifier = @"second_VC_Cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];

    cell.textLabel.text = [[trackGenre objectAtIndex:indexPath.row]objectForKey:@"track"];        
return cell;
}

@end

2 个答案:

答案 0 :(得分:0)

您应该尝试使用调试器。 [[self view] aTableView]似乎是一种引用表格视图的奇怪方式。如果它是控制器的属性,则应使用self.aTableView,如果它是常规实例变量,则应使用aTableView

-(void)reloadTableView{
    [aTableView reloadData];
    NSLog(@"do reload");
}

答案 1 :(得分:0)

所以..重新加载被调用..然后做erik建议并使用调试器:) ppl往往不够用它:P 在重新加载之前设置一个断点并查看变量:

po GenreTrack

po aTableView

po aTableView.dataSource