我想将sortedArrayUsingSelector方法与我制作的需要参数的自定义比较选择器一起使用。
这是我的自定义比较器声明符(.h文件):
- (NSComparisonResult)compareWith:(Object *)otherObject AndIntParameter:(int)param;
问题是sortedArrayUsingSelector似乎不允许一种“WithObject”方法传递参数。我正在寻找这样的东西:
NSArray *sortedArrayList = [anotherList sortedArrayUsingSelector:@selector(compareWith:AndIntParameter:) withObject:i];
我可以通过肮脏的方式编码来避免这种情况,但我真的不想...... 非常感谢您的帮助。