これが私が抱えている問題です:-私は配列を持っています
Item1,
Item2,
Item3,
Item4,
Item5,
Item6,
Item7,
....,Item11
この配列を特定の順序で並べ替える必要があります。もちろん、すべての値は「NSString」型です
私が使用する場合
sortedArrayUsingSelector:@selector(caseInsensitiveCompare:)
次のように並べ替えます:-
Item1,
Item10,
Item11,
Item2,
Item3,
Item4,
Item5,
Item6,
Item7,
Item8,
Item9
これから数値を手動で抽出できますが、おそらく「NSComparator」を使用してこれを行うより良い方法があると思いました。