Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

difference between page based application and view based application

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?

like image 247
khatzie Avatar asked Mar 26 '13 03:03

khatzie


People also ask

What is the difference between single page application and web application?

There are two general approaches to building web applications today: traditional web applications that perform most of the application logic on the server, and single-page applications (SPAs) that perform most of the user interface logic in a web browser, communicating with the web server primarily using web APIs.

What are the differences between Web pages and web applications?

The first point to start 'web application vs. website' differentiation with is interactivity. A website provides visual and text content that the user can see and read, but not affect in any way. In the case of a web application, the user can not only read the page content but also manipulate the data on this page.

What is the difference between web based and application based?

Web application is designed for interaction with end users. Website basically contains static content. The user of web application can read the content of web application and also manipulate the data. The user of website only can read the content of website but not manipulate .

What is SPA vs MPA?

The difference between SPA and MPA is that MPAs secures each page to its core. Therefore, it takes more time and effort to maintain the security; hence, page loading time is more. SPAs secure endpoints faster, but the security level is low. SPAs generally rely on JavaScript.


1 Answers

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

like image 170
Anil Varghese Avatar answered Sep 17 '22 20:09

Anil Varghese