获取NSArray索引号

发布于 11-10 09:10 字数 272 浏览 3 评论 0原文

self.listData = [NSArray arrayWithObjects:@"A",@"B",@"C", nil]; 

如何获取 listData 项的索引号?

下面的代码用于获取 listData 项目字符串:

c = [NSString stringWithFormat:@"%@",[listData objectAtIndex:indexPath.row]; 

知道吗? 谢谢

self.listData = [NSArray arrayWithObjects:@"A",@"B",@"C", nil]; 

How can I get index numbers for listData items?

This code below is used to get listData items string:

c = [NSString stringWithFormat:@"%@",[listData objectAtIndex:indexPath.row]; 

Any idea?
Thanks

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

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

发布评论

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

评论(2

咿呀咿呀哟2024-11-17 09:10:16

类似...

NSUInteger index = [listData indexOfObject:@"A"];

来自 文档

返回值
最低的指数
对应的数组值等于
一个对象。如果没有任何对象
该数组等于 anObject,
返回 NSNotFound。

讨论
考虑对象
如果 isEqual 则等于:返回 YES。

** 重要提示:如果 anObject 为零,则会引发异常。**

Something like...

NSUInteger index = [listData indexOfObject:@"A"];

From the docs:

Return Value
The lowest index whose
corresponding array value is equal to
anObject. If none of the objects in
the array is equal to anObject,
returns NSNotFound.

Discussion
Objects are considered
equal if isEqual: returns YES.

** Important: If anObject is nil an exception is raised.**

迟月2024-11-17 09:10:16

如果您可以保证数组中的字符串是唯一的,那么使用 indexOfObject: 就可以了。否则,您需要使用indexesOfObjects* 方法之一(例如indexesOfObjectsWithOptions:passingTest:)来获取一组包含您感兴趣的对象的所有索引。

If you can guarantee that the strings in your array are unique, then using indexOfObject: will work. Otherwise, you'll need to use one of the indexesOfObjects* methods such as indexesOfObjectsWithOptions:passingTest: to get a set of all of the indexes containing the object you're interested in.

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