I would like create an application similar to the safari browser, What is the best way to start off with? I want the user to enter a web address on a field (may be UITextField). The application should open up that page, preserving the view of the textfield. What is the method to follow to implement this?
Share
Start with the docs:
http://developer.apple.com/iphone/library/documentation/UIKit/Reference/UIWebView_Class/Reference/Reference.html#//apple_ref/occ/cl/UIWebView
Create a view based application in Xcode, add a UIWebView, UITextField, UIToolbar, hook up some buttons to do things like back, forward, reload, etc.
This is a really simple application, you can find tutorials on using UIWebViews with just a single search.