What does this error mean? malloc: *** error for object 0x103f000: pointer being freed was not allocated
What does that mean? Getting this in the console during usage of my app in debug mode:
开发者_JS百科malloc: * error for object 0x103f000: pointer being freed was not allocated * set a breakpoint in malloc_error_break to debug
Does that mean I'm over-releasing something?
Take a look at this and this.
Looks like you may be dereferencing something that's null, or something similar. I suggest that you post your code here to get some more helpful responses. I'm not too familiar with the iPhone API, so this may not be much help...
精彩评论