iphone - UITableView 与联系人应用程序中的名字姓氏列表
我有一个包含一系列联系人的应用程序。数组中的每个对象都是包含名字和姓氏的字典。 在 iPhone 上的联系人应用程序中,它显示用户按字母顺序排序。如果名字不可用,则排序时会考虑姓氏。
我怎样才能进行类似的排序。 我知道如何根据一个字段进行排序,如下所示:
NSArray* tempArray = [jsonData objectForKey:@"contacts"];
NSSortDescriptor *sortDescriptor;
sortDescriptor = [[[NSSortDescriptor alloc] initWithKey:@"first_name"
ascending:YES] autorelease];
NSArray *sortDescriptors = [NSArray arrayWithObject:sortDescriptor];
contactsArray = [[NSArray alloc] initWithArray:[tempArray sortedArrayUsingDescriptors:sortDescriptors]];
如何根据名字或姓氏可用性对联系人数组进行排序。
I've an application which has an array of contacts. Each object in the array is dictionary which holds first name and last name.
In the contacts application on iphone, it shows the users sorting alphabetically. If first name is not available last name is consider while sorting.
How can I do similar sorting.
I know how to do sorting based on one field as following:
NSArray* tempArray = [jsonData objectForKey:@"contacts"];
NSSortDescriptor *sortDescriptor;
sortDescriptor = [[[NSSortDescriptor alloc] initWithKey:@"first_name"
ascending:YES] autorelease];
NSArray *sortDescriptors = [NSArray arrayWithObject:sortDescriptor];
contactsArray = [[NSArray alloc] initWithArray:[tempArray sortedArrayUsingDescriptors:sortDescriptors]];
How can I sort the array of contacts based on first name or last name availability.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
供您参考:
For your reference: