I've seen this happen whenever i rotate a screen that has a UITableView on it. I've found out that it happens inbetween the willRotate and didRotate method calls in UIViewController My co-workers have seen it in other spots as well, usually around rotation. It hadnt started happening until very recently, and we're stumped as to how we should deal with it (google searches don't turn up the error message in its exact form). Has anyone else encountered this that knows what to do about it?
|
|
||||
|
|
|
(Decided to take this out of comments and put it as an answer, since I think it's a darned good answer :) Ha! I had an NaN calculation (div0), too. Key debugging aid: the message in question is output by NSLog(), so set a breakpoint on NSLog() and watch what the OS is doing at that time. For me, it was myUISlider.value = NaN. To set breakpoint: [Edit: these steps are for XCode 3.x. Same idea with 4 & beyond, just slightly different keys.]
Run app, watch it break on NSLog, check the stack traces. |
|||||
|
|
I've found the problem. When you reset the frame of a |
|||||||
|
|
I had this problem when i was assumed that:
changing:
to
fixed my issue. Edit: At some point I figured out how computers work below the C level, so I thought I would share it... (I will use an register names from x86_64 as I am most familiar with them, ARM would be slightly different but analogous)
results in converting the value of
results in copying the value of So if you have the wrong prototype the calling code will expect the value to be in the wrong place, you will end up really returning a garbage value. |
||||
|
|
|
I've spent a day trying to find the code that causes same problem and solved it within a minutes after enabling "break on exception" in Xcode. Check this tutorial to see how to enable it. |
|||||||||
|