The uilocalizedcollation tag has no wiki summary.
7
votes
3answers
2k views
NSFetchedResultsController v.s. UILocalizedIndexedCollation
I am trying to use a FRC with mixed language data and want to have a section index.
It seems like from the documentation you should be able to override the FRC's
- (NSString ...
5
votes
1answer
299 views
UILocalizedIndexedCollation for Japanese giving different ordering to contacts/music apps
UILocalizedIndexedCollation seems to returning a different result on a Japanese iOS device than that seen in the built in Contacts / Music apps.
Note that this isn't the usual question about Japanese ...
1
vote
1answer
190 views
How to sort Address Book entries in iOS per section
Im trying to implement UILocalizedIndexCollection as seen on
http://developer.apple.com/library/ios/#documentation/iPhone/Reference/UILocalizedIndexedCollation_Class/UILocalizedIndexedCollation.html
...
0
votes
1answer
549 views
Collation sort with object
I have a list view and want to sort the array so that each of the names is under the correct UILocalizedIndexCollation section.
Here is a snippet of the section that is being passed in. I want to sort ...
0
votes
0answers
25 views
UILocalizedIndexedCollection sectionForObject does not assign Chinese characters as #
I have setup my app in the project file for Chinese and English localization. OS is setup to use English interface. However, when I call
NSInteger idx = [[UILocalizedIndexedCollation ...
0
votes
0answers
35 views
PSTCollectionView with UILocalizedIndexedCollation and NSFetchedResultsController
I'm trying to implement a PSTCollectionView with a UILocalizedIndexedCollation along the bottom of the collection view. I use a NSFetchedResultsController to populate the collection view. I have the ...
0
votes
2answers
149 views
NSFetchedResultsController with indexed UITableViewController and UILocalizedIndexedCollation
I have a table that uses an NSFetchedResultsController. This gets me an index with the headers that are present
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
return ...
0
votes
0answers
183 views
UILocalizedIndexedCollation - just sections & index shown but no row data
I have been sitting on this question for two days! I have implemented UILocalizedIndexedCollation for a tableview that is populated via a plist. However I can only see the section headers and the ...
0
votes
0answers
164 views
Using localized indexed collation in my tableview
I am following apple's sample code - SimpleIndexedTableView to get indexed my tableView.
In there, I am struggling with UILocalizedIndexedCollation.
Similar to the apple's sample code with the ...