数组,找到有值的对象并获取其indexPath
我试图从 NSMutableArray 的值中查找项目,只是为了找到它的索引路径。
我完全不知道如何做到这一点,因为我对编程非常陌生。
谢谢!
I am trying to find an item in a NSMutableArray
from it's value, only to find its indexPath.
I have absolutely no idea of how to do this, as I am very new to programming in general.
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您是否正在寻找
-indexOfObject:
?此方法返回可以在运行该方法的NSArray
(NSMutableArray
继承自)中找到指定对象的索引。Are you perhaps looking for
- indexOfObject:
? This method returns the index on which the object specified can be found in theNSArray
(from whichNSMutableArray
inherits) on which the method is ran.您可能需要类似 这个
You probably need something like this or this