-3

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 :)

hakersharp
  • 57
  • 4
  • I'm not sure what you're asking here. Are the tools you have mentioned inadequate? Is there a reason you don't want to use auto layout? Is there something specific you are trying to accomplish which you don't think is possible with auto layout? – Jonah Oct 12 '16 at 15:36
  • I found what I need http://stackoverflow.com/questions/32695120/force-to-zoom-app-in-ios9?answertab=active#tab-top – hakersharp Oct 13 '16 at 09:13

1 Answers1

2

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 (:

iWheelBuy
  • 5,470
  • 2
  • 37
  • 71