2

再会,

我正在使用UITableViewController来显示Search Items

我的代码如下: 问题是,当我在viewDidLoad中调用GETSEARCH函数时,它会运行并执行回调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];
}
4

1 回答 1

5

确保reloadData从主线程发送消息,否则可能会出现问题。似乎TitleItemsReturned不能从主线程调用该方法(例如,从对象NSURLConnectionDelegate实现的方法中的后台线程networkLayer,或类似的委托方法)。

如果TitleItemsReturned确实没有在主线程上运行,您可以在内部执行此操作TitleItemsReturned

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

searchBarCancelButtonClicked方法正在工作,因为该方法正在主线程上运行(来自 UI 事件)。

于 2013-06-28T17:32:44.047 回答