NSCFData isResizable crash?

I am currently getting this console error log:

2011-08-23 19:18:40.064 App[1697:707] -[__NSCFData _isResizable]: unrecognized selector sent to instance 0x11f1c0
2011-08-23 19:18:40.075 App[1697:707] *** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[__NSCFData _isResizable]: unrecognized selector sent to instance 0x11f1c0'

Does anyone know what this means? What could be the reason for this?

Thank!

+5
source share
2 answers

Most likely, you overfulfilled some random object, and, by chance, an instance of NSData (or CFData) was allocated in the place of the current object.

Run the zombie detection tool and make sure it catches something (SO search for NSZombie).

Alternatively, set a breakpoint at objc_exception_throw and this should show you where the message is being sent. However, this may not provide sufficient context.

+9
source

, (isResizable) , , NSData? , , ?

+1

All Articles