Reputation: 318
So I've searched all throughout the web for an answer of this problem, but no luck. Ive been working on this project without any issues, then one day i started getting these errors (see image below). I know a lot of people have had this same issue and it seems to be a 'magical' error with a 'magical' solution. If you could offer any insight or require more information. Please help.
Thanks
Upvotes: 1
Views: 2254
Reputation: 3718
The architecture i386 is the architecture for a simulator (ARM is the architecture for the iPhone). If you ran this code on your iPhone it would likely work. I would try the following possible solutions.
Press command + shift + k to clear data that xcode stores. Maybe something just got saved oddly.
The issue could be that you are compiling for the 64-bit simulator when one of your frameworks you are using does not support that. Try compiling for the regular simulator.
Upvotes: 1