Reputation: 35
I just reinstalled my mac and Xcode. Then [NSBundle mainBundle]
always returns nil for some reason I don't know.
Thank you very much!
Here is the screenshot of my debug pane:
Upvotes: 1
Views: 815
Reputation: 131511
You have built your code in release mode. In release mode the debugger is unreliable. Variables can be optimized away. Switch to debug mode and try again.
Upvotes: 4