2012-03-18 2 views
0

У меня есть табличный вид и панель поиска. Кажется, что я правильно написал код, но когда я ввожу что-то в строку поиска, результатов нет (даже если они должны быть).Проблема поиска в UITableView

@interface PlaylistViewController : UITableViewController 
<UITableViewDelegate,UITableViewDataSource, UISearchBarDelegate> 


@property (strong, nonatomic) Playlist* playlistTab; 
@property (strong, nonatomic) IBOutlet UITableView *tableView; 
@property (weak, nonatomic) IBOutlet UISearchBar *searchBar; 
@property (strong, nonatomic) NSMutableArray *displayItems; 

@end 


@implementation PlaylistViewController 
@synthesize searchBar = _searchBar; 
@synthesize tableView = _tableView; 
@synthesize playlistTab = _playlistTab; 
@synthesize displayItems = _displayItems; 

- (void)viewDidLoad 
{ 
    [super viewDidLoad]; 

    AppDelegate *appDel = (AppDelegate *)[[UIApplication sharedApplication] delegate]; 
    [self setPlaylistTab:appDel.playlist]; 
    _displayItems = _playlistTab.collection; 
} 

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

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section 
{ 
    return [_displayItems count]; 
} 

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath 
{ 
    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"songCell"]; 
    Song* song = [_displayItems objectAtIndex:indexPath.row]; 
    cell.textLabel.text = song.title; 
    cell.detailTextLabel.text = song.artist; 

    return cell; 
} 

-(void) searchBar:(UISearchBar *)searchBar textDidChange:(NSString *)searchText{ 
    if ([searchText length]==0) { 
     [_displayItems removeAllObjects]; 
     [_displayItems addObjectsFromArray:_playlistTab.collection]; 
    } else { 
     [_displayItems removeAllObjects]; 
     for (Song *song in _playlistTab.collection) { 
      NSRange rangeTitle = [song.title rangeOfString:searchText  options:NSCaseInsensitiveSearch]; 
      // NSRange rangeArtist = [song.artist rangeOfString:searchText options:NSCaseInsensitiveSearch]; 
      if (rangeTitle.location != NSNotFound) { 
       [_displayItems addObject:song]; 
      } 
     } 
    } 

    [self.tableView reloadData]; 
} 

Что мне делать, чтобы заставить это работать правильно?

ответ

1

Хотя это почти то же самое, попробуйте это слишком

for(int i=0;i<[_playlistTab.collection count];i++){ 
     NSLog(@"entered here 1"); 
     Song *song = (Song *)[_playlistTab.collection objectAtIndex:i]; 
     NSRange rangeTitle = [song.title rangeOfString:searchText  options:NSCaseInsensitiveSearch]; 
     NSLog(@"%@",rangeTitle); 
     if(rangeTitle.length != 0) { 
      NSLog(@"entered here 2"); 
      [_displayItems addObject:song]; 
     } 
} 
+0

Не работает. Мое предположение здесь - это то, что я что-то испортил с помощью соединений. – nemesis

+0

Вы видели комментарии, напечатанные с помощью NSLog? – rakeshNS

+0

Нет, я их не видел. – nemesis

1

Это своего рода выглядит, как это будет работать, но подход существенно отличается от того, apple suggests. Предлагаю вам изменить несколько вещей:

1) Создайте модель результатов поиска. Это похоже на ваши _displayItems, но содержит подмножество из них, которое соответствует поиску.

@property (strong, nonatomic) NSMutableArray *searchResultDisplayItems; 

2) Реализация - (BOOL) searchDisplayController: (UISearchDisplayController *) Контроллер shouldReloadTableForSearchString: (NSString *) SearchString. У вашего поиска есть:

- (BOOL)searchDisplayController:(UISearchDisplayController *)controller shouldReloadTableForSearchString:(NSString *)searchString 
{ 
    [searchResultDisplayItems removeAllObjects]; 
    // now we don't have to throw away the model all the time 
    for (Song *song in _playlistTab.collection) { 
     // and so on, your search code as you wrote it, 
     // but when you find a match... 
     [self.self.searchResultDisplayItems addObject:song]; 
    } 
    return YES; 
    // no need to explicitly reload data now. 
    // answer YES and the search vc will do it for you 
} 

3) Когда таблица просит графа, решить, какая модель для использования на основе которой таблица просит

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section 
{ 
    // it's less typing to ask if tableView == self.tableView, but for clarity, 
    // I'll ask the converse question about which table we're using 

    if (tableView == self.searchDisplayController.searchResultsTableView) { 
     return [self.self.searchResultDisplayItems count]; 
    } else { 
     return [self.displayItems count]; 
    } 
} 

4) Когда стол запрашивает камеру, решить, какую модель использовать на основании какой таблицы:

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath 
{ 
    static NSString *CellIdentifier = @"songCell"; 
    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier]; 
    if (cell == nil) { 
     cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier]; 
    } 

    NSMutableArray * myModel = (tableView == self.searchDisplayController.searchResultsTableView)? self.searchResultDisplayItems : self.displayItems; 
    Song* song = [myModel objectAtIndex:indexPath.row]; 
    cell.textLabel.text = song.title; 
    cell.detailTextLabel.text = song.artist; 

    return cell; 
} 
+0

Я сделал все, как вы сказали, но теперь вид таблицы пуст. – nemesis

+0

@nemesis, я вижу другую проблему. Нам нужно выделить ячейки, если они не будут удалены. Будет редактировать. – danh

+0

Если вы не получите ожидаемых результатов. Добавьте несколько NSLogs и дайте мне знать, что вы видите. Убедитесь, что ваша модель начинается с некоторых песен в ней, 2) убедитесь, что ваш код поиска что-то нашел и т. Д. Но я думаю, что выделение ячеек явно было проблемой. – danh

Смежные вопросы