vote up 0 vote down star

Curious, how does an NSMutableArray mutate into a type of UIButtonContent? I'm currently working with an instance variable of type NSMutableArray which crashes upon receiving an error with:

*** -[UIButtonContent count]: unrecognized selector sent to instance 0x393ed0

Wasn't even aware of UIButtonContent, so not explicitly working with that type anywhere. Not sure how about my array came to become one. Looking for insight as to where I might have gone wrong.

flag

63% accept rate

1 Answer

vote up 2 vote down check

Don't think of it as 'mutating,' think of it as your pointers getting mixed up and pointing to the wrong object. One way this could happen is if your mutable array is deallocated by accident, and a UIButtonContent object is put into memory in its old location. The pointer won't know the difference unless you manually change it.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.