vote up 0 vote down star

Hi - I am receiving a EXC_BAD_ACCESS when I am presenting another controller in Modal view. Apparently, when I get to that controller's viewDidLoad, some variables are "invalid". However, if I wait like 20 seconds, then the controller will load fine.

I am new to iPhone. Sorry for a newbie question.

flag
When you say you "get" to the controller's viewDidLoad do you mean that the method is called by the app automatically or that you call it explicitly? What object has the EXC_BAD_ACCESS? Some code would be useful. – TechZen Oct 26 at 16:30
Hi - I tried to use a global NSString variable in a controller called Root. I created/setup another controller called View inside Root.m. I assign a value to the NSString inside Root, present View, and then try to access the NSString when View loads in viewDidLoad. I set up breakpoints to check the value of NSString before I leave the Root and when I enter View. Sometimes it has the same value, sometimes is says Invalid. More to come in next comment... – YVR1985 Oct 28 at 14:05
I think I solved it by moving all my processing to View. It appears that NSString could went out of bounds by being filled with too much. Have you ran across that? Also, I noticed that on the Simulator and on the device, the results are also inconsistent. Thanks for any input. – YVR1985 Oct 28 at 14:06

2 Answers

vote up 0 vote down

I wrote this blog about some techniques for tracking this down:

http://loufranco.com/blog/files/debugging-memory-iphone.html

The upshot is that you can run the application in a mode that will detect a lot of common memory problems.

link|flag
vote up 0 vote down

Often EXC_BAD_ACCESS can be tracked by just running the debugger. Don't set any break points, just run in debug (Command-Y) and do what you normally do to cause the app to crash. The debugger will stop at the place in the code where the crash is happening. You can then look at the threads list in the debugger (upper left view) and see the last line of your code that was valid. Lines that are in a gray font are lines from internal code. Lines in a full black font are your code. Click on the last (top most in the stack) of your lines of code and you can see where it's failing. You can then hover your mouse over the variables in that line to find the one that has not been initialized. This should give you and idea of what is happening.

link|flag
Thank you Matt. I will try this and let you know what I find. Quick question - it appears that running my App in the Simulator versus a device yields inconsistencies. Do you have any insights? Thanks. – YVR1985 Oct 28 at 14:07
I've seen inconsistencies between the two before myself, but you'll have to elaborate on what inconsistencies you're seeing specifically. – Matt Long Oct 28 at 14:46
Hi Matt - for example, the application would not have a fault with the NSString issue in the simulator as it would on the real phone. I have an app that is tracking scores, and in the simulator, I can enter the complete data I am requesting - fill up 5 arrays, about 10 variables, then store them in Core Data. No problem on the simulator but halts before I get even half way with the real device. Wierd. I am going to try your suggestion on both again see where the fault lies. At the end of the day, I wrote it so I should be able to figure it out. :-) – YVR1985 Oct 29 at 3:25

Your Answer

Get an OpenID
or

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