difference between page based application and view based application

25,570

Page based application and view based applications are just templates only that makes your job a little bit easier. Depending upon your template selection Xcode will automatically generate some files and use some controls. It is not necessary to start with such kind of template you can even start with an empty application . There you are designing from scratch. You can choose a template based on type of your application.

Inorder to find the difference just create applications using both templates and run it. Page based application uses pageViewController that switches pages while swiping just like turn pages of a book. single view application creates a single view controller and its view. If you choose single single view application initially dont worry. Add pageViewController and design properly, you can make it as a Page based application

Share:
25,570
khatzie
Author by

khatzie

"It is not enough to know all the programming languages, you should have at least one that you could tell, that’s my expertise!” I've start coding when I was in third year college, then one of programming language that I enjoy learning was PHP & MySQL. I've focused my learning on web development using PHP and I enjoy learning about it. When I was supposed to graduate in my degree I was able to render my On-the-Job Training in a Web Development company and where I'm currently employed. I love my profession, I love coding PHP and creating websites. Now my focus is on how to enhanced my skills, and know the latest trend in Web Development.

Updated on February 24, 2020

Comments

  • khatzie
    khatzie over 4 years

    I'm new in iOS development and I'm just following some tutorials on youtube, I'm confused between page based application template and view based application template. I'm using xcode 4.6 and the tutorial I'm following has page based application using xcode 4.0 using a view based application. Xcode 4.6 has no view based application.

    What are the difference of page base application and view based application in Xcode? Are they the same?