iOS簡單加載一個網(wǎng)頁的方法

字號:


    .h文件中
    @property(strong ,nonitomic) UIWebView * webView;
    .m文件中
    -(void)viewDidLoad
    {
    self.webview = [[UIWebView alloc]initWithFormat:CGRectmake(0,0,320,480)];
    [self.view addSubview:self.webView];
    NSUrlRequeast * request = [NSURLRequest requestWithUrl:[NSURL urlWithString:""]];
    //運行一下,百度頁面就出來了
    [self.webview loadRequest:request];
    }