但似乎没有任何效果。我不确定我将代码放在“MasterViewController”中。这是我的代码的一部分
我的对象如下所示。
@interface PhoneBookEntry : Person
@property NSString *firstName;
@property NSString *lastName;
@property NSString *address;
@property NSString *phoneNumber;
@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”数组进行排序 请帮助!!!!!!!!
答案 0 :(得分:0)
[self.elements sortUsingDescriptors:@[[NSSortDescriptor sortDescriptorWithKey:@"lastName" ascending:YES]]];