Search code examples
iosiphoneautolayoutsize-classesadaptive-layout

How to scale iOS app for different sizes


I'm writing an iOS app and I want app looks similar in iPhone 5 and iPhone 6 Plus. I know about Auto Layouts, Adaptive Layout and Size Classes. Is there any other way to scale view from iPhone 5 to larger screen sizes?

It is not so hard to write simple view container scaling for different screen sizes but... how to scale table cells, fonts in buttons, labels?

Thanks for help :)


Solution

  • Have you heard about AsyncDisplayKit? It has its own unique approach to the question of layouts, sizes and etc. It also has its own implementation of tables, collections, labels... It took me not much time to replace UICollectionView in existing project with ASCollectionNode.

    Hope this helps (: