如果定义了一个类:
MyClass
-------
NSString *name
然后放到数组里(或者可变数组),然后通过name条件筛选数组:
[NSPredicate predicateWithFormat:@"name = %@", someValue];
或者升序排序数组:
[NSSortDescriptor sortDescriptorWithKey:@"name" ascending:YES];
问题:如果是一个string数组(或者是NSNumber),能不能用相同的格式?
例如数组:@[@"Cat", @"Bat", @"Dog", @"Cow"];
能不能用predicateWithFormat
或者sortDescriptorWithKey
来过滤和排序?
我知道可以用block。