テーブルビューにリストされているファイルのファイル名は次のとおりです。ファイル5月1日3:00AM.mp3ファイル5月3日3:01AM.mp3
ファイル名に含まれている日付で並べ替える方法はありますか?
テーブルビューにリストされているファイルのファイル名は次のとおりです。ファイル5月1日3:00AM.mp3ファイル5月3日3:01AM.mp3
ファイル名に含まれている日付で並べ替える方法はありますか?
NSSortDescriptorを使用する必要があります:-
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
NSSortDescriptor *sorter = [[NSSortDescriptor alloc] initWithKey:date ascending:YES];
[yourArrayName sortUsingDescriptors:[NSArray arrayWithObject:sorter]];
}
それが感謝に役立つことを願っています:)
願っています、これはあなたになります。