*** 由于未捕获的异常“NSRangeException”而终止应用程序,原因:“*** -[NSMutableArray objectAtIndex:]:索引 1 超出范围 [0 .. 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这意味着您尝试访问仅包含一项(索引 0)的数组中的第二项(索引 1)。
It means you attempted to access the second item (at index 1) in an array containing only one item (index 0).
从零开始的寻址。
如果 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.