2013-06-28 85 views
2

美好的一天,reloadData不工作(稱爲委託)

我使用的UITableViewController顯示搜索項目

我的代碼如下所示:問題是,當我把我的GETSEARCH功能在我viewDidLoad中,它運行並執行回調TITLEITEMSRETURNED。並且tableView正確地重新加載

但是,如果我使用搜索欄並執行GETSEARCH。委託被調用,數據正確加載到數組中,但tableView永遠不會被更新。

但是,如果我按下灰色十字按鈕,桌子突然更新!!?是什麼賦予了?

-(void)TitleItemsReturned:(NSArray*)titleItems{ 
    for(TitleItem* titleItem in titleItems){ 
     // NSLog(@"TITLE: %@ ISBN: %@",titleItem.Title,titleItem.ISBN); 
     [searchResults addObject:titleItem]; 
    } 
    [self.tableView reloadData]; 
} 

- (void)viewDidLoad 
{ 
    NSLog(@"RUN"); 
    networkLayer=[[NLBNetworkLayer alloc]init]; 
    searchResults=[[NSMutableArray alloc]initWithCapacity:500]; 
// [networkLayer getBookSearch:TITLE term:@"Inferno"]; 
    [super viewDidLoad]; 
} 

-(void)viewDidAppear:(BOOL)animated{ 
    [networkLayer setDelegate:(id)self]; 
} 


#pragma mark - Table view data source 

-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath: (NSIndexPath *)indexPath { 
    static NSString *CellIdentifier = @"Cell"; 
    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier]; 
    if (cell == nil) { 
     cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier]; 
    } 
    TitleItem *titleItem = nil; 
    titleItem = [searchResults objectAtIndex:indexPath.row]; 
// Configure the cell 
    cell.textLabel.text = titleItem.Title; 
    NSLog(@"called %@",titleItem.Title); 
    [cell setAccessoryType:UITableViewCellAccessoryDisclosureIndicator]; 
    return cell; 
} 

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section 
{ 
    NSLog(@"count %d",[searchResults count]); 
    return [searchResults count]; 
} 

#pragma mark - UISearchDisplayController Delegate Methods 
-(BOOL)searchDisplayController:(UISearchDisplayController *)controller  shouldReloadTableForSearchString:(NSString *)searchString { 
    return YES; 
} 

- (void)searchBarSearchButtonClicked:(UISearchBar *)searchBar{ 
    //[networkLayer getBookSearch:TITLE term:searchBar.text]; 
    [networkLayer getBookSearch:TITLE term:@"Inferno"]; 
} 

- (void)searchBarCancelButtonClicked:(UISearchBar *)searchBar{ 
    NSLog(@"all removed"); 
    [searchResults removeAllObjects]; 
    [self.tableView reloadData]; 
} 
+0

你確定搜索完成後重新載入表是否發生? – Ganapathy

+0

你能告訴我你在網絡層的getBookSearch方法嗎? – wesley

回答

4

確保您從主線程發送reloadData消息,否則您可能會遇到問題。看起來方法不能從主線程調用(例如,從由networkLayer對象實現的NSURLConnectionDelegate方法中的後臺線程或類似的委託方法)。

如果TitleItemsReturned確實沒有被主線程上運行,你可以做到這一點的TitleItemsReturned內:

dispatch_async(dispatch_get_main_queue(), ^{ 
    [self.tableView reloadData]; 
}); 

searchBarCancelButtonClicked方法工作,因爲該方法是在主線程上運行(從UI事件)。