tags:

views:

143

answers:

1

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

+3  A: 

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.

Jason Coco
Thanks a lot jason....i solved my problem....u were right i was trying to access 14th element,which was not therethanks a lot
shishir.bobby