• UI第十五节——UIWebView


    - (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的高度
        //做其他事情
        
    }

    如果对你有帮助,请关注我哦!

  • 相关阅读:
    RabbitMQ使用介绍及实例
    RabbitMQ与java、Spring结合实例详细讲解
    服务器搭建--Linux安装rabbitmq
    服务器搭建--Linux安装erlang
    solrCloud index search (图)
    What does "exceeded limit of maxWarmingSearchers=X" mean?
    Solr 自定义排序[1]
    solr Query[转]
    Lucene
    Solr[Q] -No live SolrServers available to handle this request, no servers hosting shard
  • 原文地址:https://www.cnblogs.com/laolitou-ping/p/6244190.html
Copyright © 2020-2023  润新知