我正在获取楼层名称并_floorNames (NSMutableArray)
使用
_floorNames=[conferenceHall floorDetails:office];
NSLog(@"floor names=%@",_floorNames);
这将像这样打印楼层名称。
GROUND,
THIRD,
FIRST,
SECOND
现在我想将该楼层名称 NsMutableArray 排序为
GROUND,
FIRST,
SECOND,
THIRD
我用过
NSSortDescriptor *aa=[[NSSortDescriptor alloc]initWithKey:floor ascending:YES selector:@selector(localizedCaseInsensitiveCompare:)];
NSArray *descriptors = [NSArray arrayWithObjects:aa, nil];
a = [array sortedArrayUsingDescriptors:descriptors];
但它会使我的应用程序崩溃。有什么建议么 ...