「IOS入門」NSSortDescriptorで配列の要素をソートする
コード下記:
NSSortDescriptor *sortDescriptor1 = [[NSSortDescriptor alloc] initWithKey:@"a1″ ascending:YES];
NSArray *newArray = [oldArray sortedArrayUsingDescriptors:@[]];
Coding Changes the World
コード下記:
NSSortDescriptor *sortDescriptor1 = [[NSSortDescriptor alloc] initWithKey:@"a1″ ascending:YES];
NSArray *newArray = [oldArray sortedArrayUsingDescriptors:@[]];