在 UITableView 中基于 indexPath 获取对象的替代方法
Posted
技术标签:
【中文标题】在 UITableView 中基于 indexPath 获取对象的替代方法【英文标题】:Alternate way to get object based on indexPath in UITableView 【发布时间】:2013-02-09 20:46:10 【问题描述】:我正在学习一个教程:http://www.devx.com/wireless/Article/43374 所以我可以在歌曲的 UITableView 中添加字母排序和平移,并且我已经完成了编码,但是我遵循的这种方法通过过滤数组和检索 cellForRowAtIndexPath 方法中的值来减慢 UITableView。 我不知道如何删除多余的编码以提高速度。所有 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;
【问题讨论】:
【参考方案1】:如果您要显示单独的部分,每个字母对应一个字母,我会从我的数据中创建一个字典数组,在 viewDidLoad 中,而不是在这里。字典将以歌曲的第一个字母作为键,以歌曲数组作为值。这样,所有过滤和排序都是预先完成的,而不是在填充表格时在每一行中完成。
【讨论】:
谢谢!完全按照你说的做,发现速度有很大差异!以上是关于在 UITableView 中基于 indexPath 获取对象的替代方法的主要内容,如果未能解决你的问题,请参考以下文章