ios 7 xcode 5.01 app doesnt start after validate components

51 Views Asked by At

I got a warning in Xcode 5.01 indicating that I needed to validate components. I clicked the button to do the validation and since then my app doesn't actually start on the simulator. I know I'm being vague but I do recall a message about validating components.

Xcode says the app is running on the simulator but I don't see my app ever appearing on the simulator any more.

I've cleaned the app and reset the simulator. I put a breakpoint in main.m but it never executes. And the breakpoint buttons to step into, over, etc are not highlighted so it is as if it has not reached the main.m breakpoint.

I also don't see any messages in the debug console.

Any idea what happened and what I can do?

Thanks

1

There are 1 best solutions below

0
On

Ok, the problem was that the app had added arm64 when it did a Validate Project. However, I had an API, that I think only supports 32-bit. So I followed the instructions here which resolved the problem.