Reputation: 11389
I have a CRUD-style app targeted for iOS 6 and I want to know what will happen when my app run under iOS 7. Will it's default controls (textareas, labels, buttons, etc...) adhere the "flat-design" style?
Is there a way to mark like "I'm targeting you, my app, to iOS 6 and if you're running on iOS 6 use 'old-style', but if you're running on iOS 7 use 'new-style'"???
I would like that my app to have the "look'n feel" of the iOS it's running on...
Upvotes: 0
Views: 1155
Reputation: 11754
If you've used standard iOS controls with not many extra tweaks (tint color etc) then they'll look like flat controls on iOS7, and current style on iOS6.
Upvotes: 2
Reputation: 150605
The standard system controls will be for the version of the iOS you are running, so buttons and textfields will be new, tableview cells will lay out wider etc.
If you've customised any of these then your customisation will apply.
However, some elements are differently sized, so they may be positioned differently depending on how you have laid them out.
It's a good idea to install Xcode5 and run your app through the simulator at least, just to see what it looks like, or whether there are any glitches.
Upvotes: 2