Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有两个数组,一个由 NSDates 组成,一个由我用作唯一标识符的 int 组成。
我使用完美排序的 NSDate 数组对sortedArrayUsingSelector:@selector(compare:)它们进行排序,问题是我需要将这些日期关联回它们的原始 UID(另一个 NSArray)。
sortedArrayUsingSelector:@selector(compare:)
有没有一种简单的方法可以做到这一点,还是我必须做一些 for/if 语句?
您不能将两个数组关联到一个 NSDictionary 中吗?然后,您可以按照自己的方式对它们进行排序。