ios – NSRangeException’,原因:’*** – [__ NSArrayM objectAtIndex:]:索引5超出空数组的边界’

前端之家收集整理的这篇文章主要介绍了ios – NSRangeException’,原因:’*** – [__ NSArrayM objectAtIndex:]:索引5超出空数组的边界’前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
在我的应用程序中,当我第一次运行应用程序时,它工作正常.但是当我再次运行2次,它崩溃了.

这是错误..

NSRangeException’,原因:’*** – [__ NSArrayM objectAtIndex:]:索引5超出空数组的边界’

解决方法

原因:您正在访问要在索引处访问对象的Empty数组.

替换下面代码中的所有地方

[arrMydata objectAtIndex:indexPath.row];

//1. Positive index ([anArray objectAtIndex:-NUMBERS]) will crash

 //2. within the array boundary

 if([arrMydata count] > 0 && [arrMydata count] > indexPath.row){

    shrObj=[arrMydata objectAtIndex:indexPath.row];

 }
 else{

    //Array is empty,handle as you needed

 }

**Here You can see the non software example,which will explain this issue. Good luck! **

原文链接:https://www.f2er.com/iOS/335612.html

猜你在找的iOS相关文章