such that when the user open the application the website referenced will be loaded in the web browser
I know the code the will open a URL with in an application
[NSURL URLWithString:@"http://www.apple.com"]];
But this is not what I need I need the application to display the web browser within its form.
If you are only to show one page I suggest you should use
ModalViewControllerto present the page inside your app and put aUIWebViewin it.If you are to render the web page as an application than you should use
UIWebViewIf you want to present some pages but also want to make use of navigation functions of the safari inside your app you can use
DLWebViewframework which suppors ModalView with navigation function.Here you can watch the video how it works: http://dlinsin.github.com/2011/04/24/DLWebView.html