如何检查 NSMutableArray 中是否存在对象
是否有一种方法,例如 NSMUtableArrays 的 containsObject: 来检查其中是否存在对象,而不必循环遍历整个数组并检查每个元素?检查 NSMutableArray 中是否存在对象的最佳方法是什么?
Is there a method, like containsObject: for NSMUtableArrays to check if an object exists in there without having to loop through the whole array and check each element? What's the best way to check if an object exists in an NSMutableArray?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
NSMutableArray
继承自NSArray
,因此所有NSArray
方法都适用于NSMutableArray
。NSMutableArray
inherits fromNSArray
, so all of theNSArray
methods work forNSMutableArray
.如果您主要使用数组来检查对象是否存在,并且您使用的是唯一元素,则可能需要使用
NSSet
。检查集合的成员资格比检查数组更快。If you're mostly using an array to check if an object exists, and you're using unique elements, you may want to use an
NSSet
. Checking a set for membership is faster than checking an array.