Our client requires an iPad/iPhone app that covers iOS 5.0 - iOS 7.0.
- I created a new project in Xcode 5
- In build settings I changed the architecture to standard Standard armv7, armv7s
- I clicked on the Main.storyboard and made sure that the interface builder settings were: Opens in: Default (5.0) Builds for: iOS 5 and Later View as: iOS 6.1 and Earlier
- In Deployment Info I changed the Deployment Target to 5.0
I can see my old simulators now, but running an empty single application project in iOS 5.0 simulator gives me this missing storyboard errors that many have reported:
Terminating app due to uncaught exception 'NSInvalidArgumentException
', reason: 'Could not find a storyboard named 'Main' in bundle NSBundle
I can see a red "missing" storyboard in "Copy Bundle Resources" - no solutions on here work, i.e. deleting/re-adding/clean/compile
. I noticed that clicking "Localization-English" box on Interface Builder make the red file look normal, but I still get this missing error when I run the simulator.
I'm thinking that the only way is to create a project in Xcode 4 build with iOS 5 compatible code and just test and make amendments to it later with iOS 7.0
Any thoughts?