为什么 NSArray 有 indexOfObject 方法而 NSMutableArray 没有?
我想从 NSMutableArray
中删除特定元素,并且我看到 NSArray 有 indexOfObject
方法,这对此非常有用,但是 NSMutableArray
没有。
我当前的方法是使用 NSMutableArray
中的 removeObjectsInArray
方法,将包含我的对象的数组作为参数传递。
有没有更好的方法来做到这一点?有什么原因NSMutableArray
没有这个方法吗?
I would like to delete a specific element from a NSMutableArray
, and I see that NSArray has indexOfObject
method which is quite useful for this, but NSMutableArray
does not.
My current approach is to use removeObjectsInArray
method from NSMutableArray
passing as an argument an array containing my object/s.
Is there a better way to do that?, is there any reason why NSMutableArray
does not have this method?.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
它也有
-indexOfObject:
。NSMutableArray
是NSArray
的子类,因此继承了它的所有方法。It does too have
-indexOfObject:
.NSMutableArray
is a subclass ofNSArray
, and therefore inherits all its methods.