有没有办法在重新加载tableview数据之前添加加载视图

时间:2011-07-30 21:08:41

标签: iphone objective-c json uitableview uiprogressview

我试图在[self.tableview reloaddata]之前在viewDidLoad()函数中添加加载数据选项。我不知道如何添加它,是否有办法让用户知道有数据加载。 我正在解析JSON文件并且数据在3G上加载非常慢,所以它是允许用户知道数据正在加载加载选项的更好方法。这是我的代码:

- (void)viewDidLoad {
  [super viewDidLoad];


// Add the view controller's view to the window and display.
responseData = [[NSMutableData data] retain];
self.twitterArray = [NSMutableArray array];
NSURLRequest *request = [NSURLRequest requestWithURL:
[NSURL URLWithString:@"http://search.twitter.com/search.json?q=mobtuts&rpp=5"]];


[[NSURLConnection alloc] initWithRequest:request delegate:self];   

[super viewWillAppear:animated];
}


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

- (void)connection:(NSURLConnection *)connection didReceiveData:(NSData *)data {
   [responseData appendData:data];
 }


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

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

   NSDictionary *results = [responseString JSONValue];  

   self.twitterArray = [results objectForKey:@"results"]; 

   [self.tableView reloadData]; // How to add loading view before this statement

}

 - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
   // Return the number of rows in the section.

   return [self.twitterArray count];
 }

1 个答案:

答案 0 :(得分:1)

我不太清楚“加载视图”是什么意思,但我想你的意思是一个活动指示器或者其他什么应该在你加载数据时呈现。

  1. 制作一个ivar UIActivityIndicatorView *myLoadingView;
  2. 在viewDidLoad中初始化它 myLoadingView = [[UIActivityIndicatorView alloc] initWithActivityIndicatorStyle:UIActivityIndicatorViewStyleWhiteLarge]; myLoadingView.hidesWhenStopped = YES; [myLoadingView stopAnimating]; [self.view addSubView:myLoadingView];
  3. 在开始连接之前显示视图[myLoadingView startAnimating];
  4. 在下载完成后再次通过在委托方法connectionDidFinishLoading中停止它来隐藏它:[self.tableView reloadData]; [myLoadingView stopAnimating];
  5. 在viewDidUnload [myLoadingView release];
  6. 中发布

    随意询问您是否有疑问或我是否误解了您。