HI all,
can anyone let me know,
wat does dis means
* Terminating app due to uncaught exception 'NSRangeException', reason: '* -[NSCFArray objectAtIndex:]: index (13) beyond bounds (13)'
so that i can solve my problem
regards shishir
HI all,
can anyone let me know,
wat does dis means
* Terminating app due to uncaught exception 'NSRangeException', reason: '* -[NSCFArray objectAtIndex:]: index (13) beyond bounds (13)'
so that i can solve my problem
regards shishir
It means that your index is not within the valid range for your array. Your array has 13 elements and you are trying to access the 14th element. In C, indexes start at 0, so arrays have indexes that are valid from 0 to length - 1.
This is typically caused by an off by one error.