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 ;