Reputation: 2312
If a new project is developed using Xcode 6
- universal story board, will it support its prior iOS versions
(iOS 7
) ?
Upvotes: 5
Views: 539
Reputation: 54
You need to check once by running your app on iOS 7. There are some feature which works on iOS 8 and we need to handle for iOS 7 differently.
For eg
I created gradient colour on x-code 6, it worked on iOS 8 but not on iOS 7. so need to handle that too.
Upvotes: 0
Reputation: 114836
You can use a universal storyboard on iOS 7, but you won't have access to size classes and trait collections
Upvotes: 1