1

我无法让我的 UITableViewController 重新加载/刷新数据。

我有一个使用 ASIHTTPRequest 调用 URL 并带回一些字符串数据的方法。我正在尝试将此数据放入表格的单元格中,但 [self.tableview reloadData] 不起作用。

我在想 ASIHTTPRequest 在一个单独的线程上完成它的任务,所以我尝试了:

[self.tableView performSelectorOnMainThread:@selector(reloadData) withObject:nil waitUntilDone:NO];

这也什么也没做。

如何重新加载数据?我已经坚持了一段时间了。

代码:MainViewController.h

#import <UIKit/UIKit.h>
@class ProductClass;
@interface MainViewController : UITableViewController {
 ProductClass *item;
}
@property (nonatomic, retain) ProductClass *item;
@end

主视图控制器.m

#import "MainViewController.h"
#import "ASIHTTPRequest.h"
#import "ProductClass.h"

@implementation MainViewController
@synthesize item;

- (void) viewDidLoad {
 self.title = @"TableView Test";
 self.tableView.allowsSelection = NO;
 self.item = [[ProductClass alloc] init];
    [self callURL];
}

-(void)callURL {
    NSURL *url = [NSURL URLWithString:@"http://urlgoeshere.com"];
    ASIHTTPRequest *request = [ASIHTTPRequest requestWithURL:url];
 [request setDelegate:self];
 [request startAsynchronous];
}


- (void)requestFinished:(ASIHTTPRequest *)request {
 //Grab the response
 NSString *responseString = [request responseString];
        //Put the result into the ProductClass item
 item.titleOfProduct = responseString;

    //This line shows that self.tableview does NOT have an address of 0x0
 NSLog(@"%@\n", self.tableView); 

    //Problem line!!!!!! 
    [self.tableView performSelectorOnMainThread:@selector(reloadData) withObject:nil waitUntilDone:NO];
    //The below lines also do nothing!!!!
 //[self.tableView reloadData];
 //[[self tableView] reloadData];
}

有人有想法么???我完全不知所措。

干杯,布雷特

4

1 回答 1

0

您不需要 performSelectorOnMainThread - asihttprequest 始终调用主线程上的选择器。

您是否为表设置了数据源?您需要设置至少一些字段数据源,请参阅:

http://developer.apple.com/iphone/library/documentation/UIKit/Reference/UITableViewDatasource_Protocol/Reference/Reference.html

至少 cellForRowAtIndexPath 和 numberOfRowsInSection。这里有一个教程可能会有所帮助:

http://icodeblog.com/2008/08/08/iphone-programming-tutorial-populating-uitableview-with-an-nsarray/

于 2010-07-21T19:13:28.293 回答