sortedArrayUsingSelector带有一个参数

时间:2013-10-20 14:38:57

标签: xcode sorting parameters selector

我想将sortedArrayUsingSelector方法与我制作的需要参数的自定义比较选择器一起使用。

这是我的自定义比较器声明符(.h文件):

- (NSComparisonResult)compareWith:(Object *)otherObject AndIntParameter:(int)param;

问题是sortedArrayUsingSelector似乎不允许一种“WithObject”方法传递参数。我正在寻找这样的东西:

NSArray *sortedArrayList = [anotherList sortedArrayUsingSelector:@selector(compareWith:AndIntParameter:) withObject:i];

我可以通过肮脏的方式编码来避免这种情况,但我真的不想...... 非常感谢您的帮助。

0 个答案:

没有答案