UI第十五节——UIWebView

时间:2023-12-24 12:48:49

- (void)viewDidLoad {
    [super viewDidLoad];
    UIWebView *webView = [[UIWebView alloc] initWithFrame:self.view.bounds];
   
    
    webView.delegate = self; //设置代理
    [self.view addSubview:webView];
    NSString *string = @"http://moapproval.longfor.com:39649/moapproval/PAGE_NEWS/news_desc.html?id=4919&categoryId=3&loginUser=wx-user1&token=bce74066-e7e4-4aa9-aff4-26083f8ba3b6&usercode=wx-user1";
    //加载网址
//    [webView loadHTMLString:string baseURL:[NSURL URLWithString:string]];
    
    [webView loadRequest:string];
    
 //    // 实例化WebView
//    UIWebView *webView = [[UIWebView alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
//    
////#if 0 // 加载一个网页
//    // 根据字符串生成一个URL
//    NSURL *url = [NSURL URLWithString:@"https://www.baidu.com/"];
////#endif
    
//#if 1
    // 加载一个本地的HTML页
    
    // 取得GitHub.html的路径
//    NSString *path = [[NSBundle mainBundle] pathForResource:@"GitHub" ofType:@"html"];
//    
//    // 根据一个路径生成一个URL
//    NSURL *url = [NSURL fileURLWithPath:path];
//#endif
    
    
    // 根据一个URL,生成一个网络请求
//    NSURLRequest *request = [NSURLRequest requestWithURL:url];
//
//    // 让WebView去加载一个请求,服务器会返回一个html的内容给WebView
//    [webView loadRequest:request];
    
    // 把WebView添加到self.view上
//    [self.view addSubview:webView];
}
-(void)webViewDidFinishLoad:(UIWebView *)webView
{
    NSLog(@"加载完成!");
    
    //获取webView的高度
    //做其他事情
    
}