webviewを使ってみる

#import "ViewController.h"

@implementation ViewController

- (void)viewDidLoad {
    [super viewDidLoad];
    NSURLRequest* req = [NSURLRequest requestWithURL:[NSURL URLWithString:@"http://yahoo.co.jp/"]];
    [webView loadRequest:req];
}

- (void)didReceiveMemoryWarning {
    [super didReceiveMemoryWarning];
}


- (void)viewDidUnload {
}
// web を解放


- (void)dealloc {
    webView.delegate = nil;
}

@end

http://webmage.pro/blog_img/webview.pdf