• Open Menu Close Menu
  • Apple
  • Shopping Bag
  • Apple
  • Mac
  • iPad
  • iPhone
  • Watch
  • TV
  • Music
  • Support
  • Search apple.com
  • Shopping Bag

Lists

Open Menu Close Menu
  • Terms and Conditions
  • Lists hosted on this site
  • Email the Postmaster
  • Tips for posting to public mailing lists
Re: index out of bounds
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: index out of bounds


  • Subject: Re: index out of bounds
  • From: Daniel Jalkut <email@hidden>
  • Date: Thu, 6 Jul 2006 13:22:34 -0400

I make a habit of avoiding these types of exceptions by always checking the index against the array count. Something like:

myObject = nil;
if (index < [myArray count])
{
	myObject = [myArray objectAtIndex:index];
}

Daniel

On Jul 5, 2006, at 1:32 AM, Rex Fernando wrote:

Hello,

I have a table with data in it. When someone clicks the remove button, I get the selection array and remove all the objects in it. If there is an empty selection, I am told index out of bounds, naturally, because there are no items in the array. Can I just leave this error? Or should I make a catch for it?

Thanks

Rex

_______________________________________________
Do not post admin requests to the list. They will be ignored.
Cocoa-dev mailing list (email@hidden)
Help/Unsubscribe/Update your Subscription:
sweater.com


This email sent to email@hidden

_______________________________________________ Do not post admin requests to the list. They will be ignored. Cocoa-dev mailing list (email@hidden) Help/Unsubscribe/Update your Subscription: This email sent to email@hidden
References: 
 >index out of bounds (From: Rex Fernando <email@hidden>)

  • Prev by Date: Re: Detect modifier keys on launch
  • Next by Date: Re: NSDate in a Range
  • Previous by thread: Re: index out of bounds
  • Next by thread: Re: index out of bounds
  • Index(es):
    • Date
    • Thread