*** 由于未捕获的异常“NSRangeException”而终止应用程序,原因:“*** -[NSMutableArray objectAtIndex:]:索引 1 超出范围 [0 .. 0]”

发布于 2024-09-25 08:12:10 字数 157 浏览 2 评论 0原文

是什么意思

* 由于未捕获的异常“NSRangeException”而终止应用程序,原因:“* -[NSMutableArray objectAtIndex:]:索引 1 超出范围 [0 .. 0]”,

这样我就可以解决我的问题 谢谢

what is meaning

* Terminating app due to uncaught exception 'NSRangeException', reason: '* -[NSMutableArray objectAtIndex:]: index 1 beyond bounds [0 .. 0]'

so that i can solve my problem
thanks

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

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

发布评论

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

评论(2

灯角 2024-10-02 08:12:10

这意味着您尝试访问仅包含一项(索引 0)的数组中的第二项(索引 1)。

It means you attempted to access the second item (at index 1) in an array containing only one item (index 0).

冰之心 2024-10-02 08:12:10

从零开始的寻址。

如果 NSArray 中只有一项,则数组中的第一项位于索引 0,而不是索引 1。

Zero based addressing.

If you only have one item in an NSArray, the first item in an array is at index 0, not index 1.

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