Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to make apps compatible with iOS6 and iOS7?

I have a few apps written in iOS6. I am discovered that all the iOS6 apps do not look right in iOS7, things are out of place or the UX/UI is all wrong.

I am unsure of how to make these apps compatible with both, rather I'd much like to keep iOS6 apps as iOS6 and just don't let them run in iOS7; but I'm not sure how to do this.

But my real question is how do you make apps that will work in iOS6 and iOS7? Do you use like If statements, different NIB files?

like image 888
zardon Avatar asked Mar 23 '23 08:03

zardon


2 Answers

Check this official link for reference

like image 109
user133 Avatar answered May 07 '23 14:05

user133


If you want to suggest perfect user experience, you may build different NIB files and version checking codes to show different UI. (Or you can refine your NIB working for both version)

If you want to take iOS7 compatibility with less concerning of iOS6, try http://github.com/youknowone/UI7Kit

like image 29
youknowone Avatar answered May 07 '23 14:05

youknowone