Try the search, it's linked to some great forums

Tuesday, January 19, 2016

Configuring a webView, MKMapView, UIAlertView

Another quickstart guide to various views;

webView
Here the code for viewDidLoad;
    // Do any additional setup after loading the view, typically from a nib.
    NSString *fullURL = @"http://cutthroatrobotics.com/";
    NSURL *url = [NSURL URLWithString:fullURL];
    NSURLRequest *requestObj    = [NSURLRequest requestWithURL:url];
    [self.viewWeb loadRequest:requestObj];


UIAlertView
 Here's a snippet ;