numberOfRowsInSection在线程viewController中返回0

时间:2012-06-25 15:31:52

标签: objective-c multithreading uitableview objective-c-blocks

我在app中有一个viewController,它从JSON中检索数据,解析它并在UITableView中填充。我正在使用线程来加载数据,以便应用程序在检索数据时不会挂起。

问题:

numberOfRowsInSection返回0,并且有时启动应用程序时不会填充UITableView。有时候,一切都很好。这都是随机的:S

可能的解释:

问题是,似乎有时会在检索数据之前调用numberOfRowsInSection。 numberOfRowsInSection返回名为“subject”的NSMutableArray的count值。调用loadData时会添加“subject”中的对象。因此numberOfRowsInSection应该返回'subject'的计数,并且在填充'subject'之后不应该调用它。

有时当我启动应用程序时,在填充'subject'并且UITableView显示数据之后调用numberOfRowsInSection,但有时当我启动应用程序时,在填充'subject'之前调用numberOfRowsInSection并且UITableView不显示数据。

代码: 这是我的代码:

-(void)loadData:(id)sender
{

    dispatch_queue_t getRemindersQueue=dispatch_queue_create("reminders JSON downloader with reload Button", NULL);


    dispatch_async(getRemindersQueue, ^{


        [self getReminders];


        dispatch_async(dispatch_get_main_queue(), ^{

            self.navigationItem.rightBarButtonItem=sender;

            [self.tableView reloadData];


        });



    });

    dispatch_release(getRemindersQueue);  



}

-(void)getReminders
{
    NSURL * aURL = [NSURL URLWithString: @"http://www.merrycode.com/apps/IELTS/RemindersJSON"];

NSURLRequest *request = [NSURLRequest requestWithURL:aURL cachePolicy:NSURLRequestReloadIgnoringCacheData timeoutInterval:10.0];

NSError *responseError=nil;

// Perform request and get JSON back as a NSData object
NSData *response = [NSURLConnection sendSynchronousRequest:request returningResponse:nil error:&responseError];

if(responseError)
{

    dispatch_async(dispatch_get_main_queue(), ^{



        UIAlertView *parsingError = [[UIAlertView alloc] initWithTitle:@"Network Error" 
                                                               message:@"Can not reach the servers. Make sure you are connected to the internet." 
                                                              delegate:nil 
                                                     cancelButtonTitle:@"OK"
                                                     otherButtonTitles:nil];
        [parsingError show];






    });

    return;
}


NSString *str = [[NSString alloc] initWithData:response encoding:NSUTF8StringEncoding];

NSLog(@" String of Reminders JSON: %@",str);

NSString *newStr= [self stringByRemovingControlCharacters:str];

response = [newStr dataUsingEncoding:NSUTF8StringEncoding];


NSError *jsonParsingError = nil;
NSArray *publicTimeline = [NSJSONSerialization JSONObjectWithData:response options:0 error:&jsonParsingError];


NSLog(@"%@", jsonParsingError); 

NSLog(@" publicTimeline Array Count: %d", [publicTimeline count]); 


if([publicTimeline count] == 0)
{

    dispatch_async(dispatch_get_main_queue(), ^{



        UIAlertView *parsingError = [[UIAlertView alloc] initWithTitle:@"Error Retriving Data" 
                                                               message:@"There was an error reciving data from the server." 
                                                              delegate:nil 
                                                     cancelButtonTitle:@"OK"
                                                     otherButtonTitles:nil];
        [parsingError show];






    });

    return;
}






NSDictionary *colleges;



for(int i=0; i<[publicTimeline count];i++)
{

    colleges= [publicTimeline objectAtIndex:i];

    NSLog(@"Reminders: %@", [colleges objectForKey:@"title"]); 

    [self.subjects addObject:[colleges objectForKey:@"title"]];

    [self.dates addObject:[colleges objectForKey:@"date"]];

    [self.description addObject:[colleges objectForKey:@"desc"]];


}

[self.subjectsInNSUserDefaults removeAllObjects];
[self.datesInNSUserDefaults removeAllObjects];
[self.descriptionInNSUserDefaults removeAllObjects];


[self.userDefaults setObject:self.subjects forKey:@"SUBJECTS"];


   [self.userDefaults setObject:self.dates forKey:@"DATES"];
    [self.userDefaults setObject:self.description forKey:@"DESCRIPTION"];
    [self.userDefaults synchronize];


}

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

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
    NSLog(@"Array Count in numberOfRowsInSection: %d",[self.subjects count]);
    return [self.subjects count];
}

2 个答案:

答案 0 :(得分:0)

一些想法......

你说这是一个UIViewController(而不是UITableViewController)。你是如何设置你的UITableView和代表的?如果你在这个后台线程运行的时候仍在设置你的UITableView或它的代理,理论上可能在你完成设置你的UITableView之前完成后台线程,这可能会产生奇怪的问题(并解释为什么会发生这种情况&# 34;随机&#34;。)

另外,在UITableView没有填充(而不是某种其他响应,或根本没有响应)的情况下,您是否已检查以确保您的响应对象中包含有关大学的信息?我看到你在哪里检查响应错误,但你似乎认为如果没有错误,它将是一个关于大学信息的回复(这可能是也可能不是一个安全的假设)。

答案 1 :(得分:0)

如果您对数据检索的问题是正确的,那么我也遇到了这个问题。我不太优雅的解决方案就是设置一个计时器,以便在我知道数据被加载时填充表格。