Difference between page-based application and page-based view

I am new to iOS development and I just follow some tutorials on youtube, I am confused between a page based template and a based application template . I am using xcode 4.6 , and the tutorial that I am following uses a page based application using xcode 4.0 using a presentation based application. Xcode 4.6 does not have a view-based application.

What is the difference between a base page based application and a presentation based application in Xcode? They are the same?

+8
ios xcode4
source share
1 answer

Page-based and presentation - based applications are just templates , making your job easier. Depending on the template choice, Xcode will automatically generate some files and use some controls. There is no need to start with such a template, you can even start with an empty application . There you develop from scratch. You can choose a template based on the type of your application.

To find the difference, just create applications using both templates and launching them. Page-based use uses the pageViewController , which switches pages while scrolling, like pages from book pages. a single-view application creates a single view controller and its presentation. If you select one application with one view, do not worry at first. Add a pageViewController and create it correctly, you can make it as a page based application

+17
source share

All Articles