“NSSet allObjects”随机排序吗?

发布于 2024-12-03 17:53:32 字数 400 浏览 1 评论 0原文

我有以下代码:

self.temporaryImageArray = [(NSSet *)[[array objectAtIndex:0] images] allObjects]

Array 包含来自我的 CoreData 模型的 Band 对象。它有一个名为“images”的 NSSet 属性。

现在,我使用这个 temporaryImageArray 通过时间戳来确定图像是否需要更新。我遇到了一些非常随机的行为,现在我的问题是:

[NSSet allObjects] 是否以无顺序随机从集合中返回对象?

有什么办法可以防止这种情况或让它按顺序返回吗?这会大大降低我的代码的复杂性。

I have the following code:

self.temporaryImageArray = [(NSSet *)[[array objectAtIndex:0] images] allObjects]

Array holds an Band object from my CoreData model. It has an NSSet as a property called "images".

Now I use this temporaryImageArray to determine via timestamps whether or not the images need to be updated. I have come across some very random behavior and my question now is:

Does [NSSet allObjects] return the Objects from the Set randomly in no order?

Is there any way to prevent this or to have it return it in order? It would lessen the complexity of my code a lot.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

絕版丫頭 2024-12-10 17:53:32

NSSet 是一个无序集合。它不知道其对象的“顺序”是什么。因此,当您调用 -allObjects 时,它会无序地返回它们。

请注意,关于 -allObjects 的文档指出:

包含集合成员的数组,如果集合没有成员,则为空数组。 数组中对象的顺序未定义。

(强调我的)

NSSet is an unordered collection. It has no idea what the "order" of its objects are. Therefore, when you call -allObjects, it returns them unordered.

Note that the documentation on -allObjects states:

An array containing the set’s members, or an empty array if the set has no members. The order of the objects in the array isn’t defined.

(emphasis mine)

小伙你站住 2024-12-10 17:53:32

集合没有顺序。但是,在 10.7 (Lion) 中,有一个 NSOrderedSet 类。 iOS 4.0 中不提供此功能。

A set does not have order. However, in 10.7 (Lion), there is an NSOrderedSet class. This isn't available in iOS 4.0.

垂暮老矣 2024-12-10 17:53:32

NSOrderedSet 和 NSMutableOrderedSet 现在在 iOS 5 中可用,以便您随时了解最新情况。

这是

NSOrderedSet and NSMutableOrderedSet are now available in iOS 5 just so you're kept up to date.

Here's the link

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文