What is the difference between "master Detail application" and "web view application"?

Asked

Viewed 302 times

3

There is some difference in Xamarin between projects master Detail application and web view application?

I am started a new project on Xamarin iPhone.

  • The ideal would be to use the Single Page application to start a new project, as it is the simplest initial project, with fewer things to change.

1 answer

2

Master Detail application means that a basic project will be created already assembled with a storyboard which contains a Tableviewcontroller (master) and a Uiviewcontroller (Detail). It means that you have a table and clicking on one of your entries will display the details of that entry. You must popular the table and configure the layout of the detail screen.

See here the explanation of Xamarin: http://docs.xamarin.com/recipes/ios/general/storyboard/storyboard_a_tableview/

See the apple explanation: https://developer.apple.com/library/ios/documentation/userexperience/conceptual/tableview_iphone/CreateConfigureTableView/CreateConfigureTableView.html

About web view application, I did not see the possibility of creating a project like this, but I believe that it is a project also already mounted with a Uiviewcontroller that inside has a Uiwebview. A webView is like a browser within your application. It is used if you want to load webpages without leaving the app (it is also possible to have Safari load, which would quit).

So, you need to see what you need: load webpages or populate a table and display its details when a table entry is played.

Browser other questions tagged

You are not signed in. Login or sign up in order to post.