Iphone联系人列表。按字母顺序排序TableView视图

时间:2013-03-27 01:11:18

标签: iphone objective-c sorting custom-object contact-list

我正在制作一个拥有一系列联系人(对象)的IPHONE电话簿应用程序。我正在尝试对此数组进行排序,以便按字母顺序显示lastName

但似乎没有任何效果。我不确定我将代码放在“MasterViewController”中。这是我的代码的一部分

我的对象如下所示。

@interface PhoneBookEntry : Person  
@property NSString *firstName;
@property NSString *lastName;
@property NSString *address;
@property NSString *phoneNumber;

@end

@interface MasterViewController : UITableViewController
@property NSMutableArray *elements;
@end

@implementation MasterViewController

- (id)initWithStyle:(UITableViewStyle)style
{
self = [super initWithStyle:style];
if (self) {
}
return self;
}

- (void)viewDidLoad
{
[super viewDidLoad];
self.elements = [[NSMutableArray alloc] init];
}

假设数组中已包含元素。 我需要按字母顺序对“self.elements.lastName”数组进行排序 请帮助!!!!!!!!

1 个答案:

答案 0 :(得分:0)

[self.elements sortUsingDescriptors:@[[NSSortDescriptor sortDescriptorWithKey:@"lastName" ascending:YES]]];