我有一个表格视图和一个搜索栏。似乎我已经正确编写了代码,但是当我在搜索栏中输入内容时,没有结果(即使应该有)。
@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];
}
我应该怎么做才能使它正常工作?