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

3

Is there any difference in Xamarin between master detail application and web view application projects?

I'm starting a new project on Xamarin iPhone.

    
asked by anonymous 09.02.2014 / 15:14

1 answer

2

Master detail application means that a base project already built with a storyboard will be created that contains both a TableViewController (master) and a UIViewController (detail). It means that you have a table and clicking on one of its entries will display the details of that entry. You should popular the table and configure the details screen layout.

See the xamarin explanation here: link

See the apple explanation:

On web view application , I have not seen the possibility of creating a project like this, but I believe it is a project already mounted with a UIViewController inside that owns a UIWebView. A webView is like a browser within your application. It is used if you want to load webPages without having to leave the application (you can also have Safari load, which would leave).

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

    
10.02.2014 / 12:44