表格视图中列出的文件的文件名如下: File May 1 3:00 AM.mp3 File May 3 3:01 AM.mp3
有没有办法可以按文件名中包含的日期对其进行排序?
表格视图中列出的文件的文件名如下: File May 1 3:00 AM.mp3 File May 3 3:01 AM.mp3
有没有办法可以按文件名中包含的日期对其进行排序?
您必须使用 NSSortDescriptor :-
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
NSSortDescriptor *sorter = [[NSSortDescriptor alloc] initWithKey:date ascending:YES];
[yourArrayName sortUsingDescriptors:[NSArray arrayWithObject:sorter]];
}
希望对你有帮助谢谢:)
希望,这会让你..