Tôi đã sắp xếp thành công dữ liệu tôi có bằng khóa sắp xếp lastName
, nhưng tôi muốn biết cách sắp xếp theo lastName
và sau đó là firstName
. Đây là mã tôi đã sử dụng để sắp xếp theo lastName
Làm cách nào để thiết lập khóa phân loại NSSortDescriptor phụ?
NSSortDescriptor *sortDescriptor = [[NSSortDescriptor alloc] initWithKey:@"firstName" ascending:YES];
[request setSortDescriptors:[NSArray arrayWithObject:sortDescriptor]];
Làm thế nào để thêm khóa loại thứ cấp của firstName
?
Chỉ 2 giây sau khi từ bỏ tìm kiếm và hỏi tại đây, đây là giải pháp chính xác tôi đã tìm thấy. [Liệt kê ở đây] (http://developer.apple.com/library/ios/#documentation/Cocoa/Conceptual/SortDescriptors/Concepts/Creating.html#//apple_ref/doc/uid/20001845-BAJEAIEE) – tarheel
Giải pháp là đi @tarheel. Liên kết đã chết. – new2ios