我正在学习一个教程: http: //www.devx.com/wireless/Article/43374 所以我可以在歌曲的 UITableView 中添加字母排序和平移,我已经完成了编码,但是我遵循的这种方法减慢了 UITableView在 cellForRowAtIndexPath 方法中过滤数组和检索值。我不知道如何删除多余的编码以提高速度。所有 MPMediaItems 都存储在 tableTracks 数组中。在 viewDidLoad 中初始化。你的 musicIndex 是一个字母数组(每首歌曲的第一个字母)。我扩展了 MPMediaItem 以包含一个 NSString firstLetter,它是歌曲的第一个字母。
任何帮助加快它?
-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{
//--Create Cell--\\
.........
//--Load Info--\\
NSString *alphabet = [musicIndex objectAtIndex:[indexPath section]];
NSPredicate *predicate =
[NSPredicate predicateWithFormat:@"firstLetter beginswith[c] %@", alphabet];
NSArray *songs = [tableTracks filteredArrayUsingPredicate:predicate];
//Needed Object
MPMediaItem *item = [songs objectAtIndex:indexPath.row];
//--Rest of Method--\\
...........
return cell;
}