I created a simple webview that loads a pre-defined website in iOS app.
NSURL *url =[NSURL URLWithString:@"http://jihadkawas.com"];
NSURLRequest *req = [NSURLRequest requestWithURL:url];
[Webview loadRequest:req];
how can i add a URL BAR, so that user can access any url? like normal browsers? Thank you!