0
NSStringの配列をソートしようとしていますが、実際にパラメータを@selectorメソッドに渡す方法がわかりません。ここに私がやろうとしている理由があります2つの引数でカスタムセレクタを使用して配列を並べ替える
//After the optional: id like to pass a UITextField.text but not sure how.
NSArray *sortedSection = [wordSection sortedArrayUsingSelector:@selector(sortValue:optional:)];
私が使用しようとしている方法はここにあります。
- (NSComparisonResult) sortValue:(NSString *)otherString optional:(NSString *)otherLetters;
ご協力いただきまして誠にありがとうございます。