0

表格视图中列出的文件的文件名如下: File May 1 3:00 AM.mp3 File May 3 3:01 AM.mp3

有没有办法可以按文件名中包含的日期对其进行排序?

4

2 回答 2

0

您必须使用 NSSortDescriptor :-

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{

   NSSortDescriptor *sorter = [[NSSortDescriptor alloc] initWithKey:date ascending:YES];
   [yourArrayName sortUsingDescriptors:[NSArray arrayWithObject:sorter]];

}

希望对你有帮助谢谢:)

于 2012-05-01T05:39:52.950 回答
0

您问题的最佳教程和示例代码..

希望,这会让你..

于 2012-05-01T05:48:11.507 回答