如何获取 NSMutableArray 中对象(多次出现)的索引?
大家好:)
我有一个简单的问题
- 对于以下 NSMutableArray:
NSMutableArray *array = [[NSMutableArray alloc] initWithObjects: @"1", @"2 ",@"1",@"2",@"1"];
如何获取一个对象的所有索引;据说我想获取 1 的索引?
所以应该说 1 存在于索引 0、2 和 4 处。
非常感谢任何形式的帮助:)
谢谢。
Hello folks :)
I have a quick question
- For the following NSMutableArray:
NSMutableArray *array = [[NSMutableArray alloc] initWithObjects: @"1", @"2",@"1",@"2",@"1"];
How can we get all the indexes for an object; supposedly I want to grab the index of 1?
So it should say 1 exists at index 0, 2 and 4.
Any kind of help is really appreciated :)
Thank you.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
一样使用它
像退货
use it like
returns
你尝试过这个吗:
这会给出:
最重要的是,你可以创建一个像这样的 NSArray 类别:
.m 文件
可以像这样使用:
Did you try this :
That would give :
Best of all, you could create a NSArray category like this one :
.m file
That could be used like this :