Reputation: 5377
I'd like to use Xcode 7 when it's released to develop apps for i-devices running iOS 7 or even iOS 6. Is this possible? ... I know
I'm planning pretty basic apps (I'm very much a beginner), and I'm assuming apps are forward compatible, e.g., if it runs OK on an iOS 6 iPhone 4S then it'll be OK on an iOS 8 iPhone 4s. What I don't know are settings, options, etc. I should set in the Xcode IDE to assure my code will compile and run on all OS's >=6 or 7. What, if anything, do I need to do when starting a project other than setting the Deployment Target to be iOS 6 or 7?
Upvotes: 1
Views: 823
Reputation: 4914
After you create the project in your target settings you need to choose deployment target 6.0
Then in your build setting you need to make sure you choose correct architectures that supports 32 bits and 64 bit processor.
If you are going to use storyboards you need to make sure that you dont rely on Auto Layout
feature because that is ios 7 and later versions.
Upvotes: 1