Quote:
Originally Posted by RickMaddy
I politely disagree
This error indicates that the message 'objectAtIndex' is being called on an object that doesn't respond to the message/method/selector. Usually, if you call a method on a released object your get some sort of "bad access" error.
In this case the error clearly shows a call to 'objectAtIndex' on something called a 'UIButtonContent' - whatever that is. Most likely you meant to call 'objectAtIndex' on an NSArray but you mistakenly called it on some sort of button type object.
|
thanks all! I got it working.