现在的位置: 首页 > 综合 > 正文

UIWebView 的使用

2018年02月13日 ⁄ 综合 ⁄ 共 404字 ⁄ 字号 评论关闭

    [super viewDidLoad];
    CGRect webFrame = CGRectMake(0.0, 0.0, 320.0, 460.0);
    UIWebView *webView = [[UIWebView alloc] initWithFrame:webFrame];
    [webView setBackgroundColor:[UIColor whiteColor]];
    NSString *urlAddress = @"http://www.baidu.com";
    NSURL *url = [NSURL URLWithString:urlAddress];
    NSURLRequest *requestObj = [NSURLRequest requestWithURL:url];
    [webView loadRequest:requestObj];
    self.view = webView;
 

转自:http://ynial.iteye.com/blog/1274955

抱歉!评论已关闭.