Ok...figured out how to get the view to display the websites. For anyone interested in how I did this, here is how I did:
Code:
UIWebView *tempView = [[UIWebView alloc] initWithFrame:CGRectMake(0, 0, 320, 400)];
NSURL *test1 = [NSURL URLWithString:@"http://www.google.com"];
NSURLRequest *test = [NSURLRequest requestWithURL:test1];
[tempView loadRequest:test];
[self addSubView:tempView];
Now I just need to know how to connect a UIImage to a picture that I click on inside the webview.