Reputation: 343
First off, I realize there are a thousand questions with this subject, but I looked through many of them and could not find a solution.
I'm working on a simple tutorial from developer.apple.com. I have followed it step by step.
When I run the project, it compiles fine, but about 1 out of every 3 or 4 times the following happens:
As you can see I get no output in the console so I'm at a loss (99% of the other posts on this subject come with some sort of meaningful output). This EXACT same this was happening on the previous tutorial I worked on. I fixed it by deleting all localization files and turning off localization. Localization is not enabled on this project.
The connections for the IBOutlets are all fine. I tried adding an exception breakpoint, it doesn't trip.
I can post more information (source code, threads, etc), but I wanted to get a general feel as to whether or not it would even be valuable for the experts. The fact that there is no output might make it obvious. Let me know.
Thanks for your time.
Upvotes: 3
Views: 3338
Reputation: 343
As pointed out by Evan Mulawski and CodaFi in comments, this is a known bug:
Are you using OS X 10.8.4? If so, there is a bug in that update that affects the simulator. Use Edit Scheme and switch the debugger from LLDB to GDB.
http://www.tuaw.com/2013/06/05/devjuice-10-8-4-and-the-ios-simulator/
Upvotes: 3