0

テーブルビューにリストされているファイルのファイル名は次のとおりです。ファイル5月1日3:00AM.mp3ファイル5月3日3:01AM.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 に答える