テキストに HTML タグが含まれている場合、NSFetchedResultsController を使用してリストをアルファベット順に並べ替えるにはどうすればよいですか。
たとえば、これを並べ替える必要があります。
- <b>Hello</b>
- Adam
結果は次のようになります。
- Adam
- <b>Hello</b>
これは私が現時点でそれをソートする方法です:
sortString = [[NSString alloc] initWithString:@"title"];
NSSortDescriptor *sortDescriptor2 = [[[NSSortDescriptor alloc] initWithKey:sortString ascending:sortAsc selector:@selector(localizedCaseInsensitiveCompare:)] autorelease];
NSArray *sortDescriptors = [[[NSArray alloc] initWithObjects:sortDescriptor, sortDescriptor2, nil] autorelease];
[fetchRequest setSortDescriptors:sortDescriptors];
それで、「分割」をソートする方法はありますか?