NSSortDescriptor - push # and numbers to the end of the list - iphone xcode
I have a table view that shows contacts sorted by alphabetic ordering and divide it to sections. i am using - NSSortDescriptor *sortDescriptor = [[NSSortDescriptor alloc] initWithKey:[dataSource keyName] ascending:YES]; NSArray *sortDescriptors = [[NSArray alloc] initWithObjects:sortDescriptor, nil]; then for contacts without name i am using # sign as their first letter so all of them will be grouped in one group. everything is great. the only thing i want is to push the # section to the end of the table, as for now it shows in the beginning of it. any ideas? thanks in advance shani The best