目睹IOS WebView 使用方法

创建IOS工程,在主controller中加入webview,并加载直播地址。代码如下:

    // 创建webView
    UIWebView *webView = [[UIWebView alloc] initWithFrame:self.view.frame];
    // 创建需要加载的url
    NSURL *url = [NSURL URLWithString:@"http://mudu.tv/watch/363277"];
    NSURLRequest *request = [NSURLRequest requestWithURL:url];
    // 加载请求
    [webView loadRequest:request];
    // 将webview加到视图
    [self.view addSubview:webView];

由于IOS9以后要求App内访问的网络必须使用HTTPS协议,为了能访问http,需要在info.plist中加入

<key>NSAppTransportSecurity</key>
    <dict>
        <key>NSExceptionDomains</key>
        <dict>
            <key>mudu.tv</key>
            <dict>
                <!--适用于这个特定域名下的所有子域-->
                <key>NSIncludesSubdomains</key>
                <true/>
                <!--允许App进行不安全的HTTP请求-->
                <key>NSExceptionAllowsInsecureHTTPLoads</key>
                <true/>
            </dict>
        </dict>
    </dict>

results matching ""

    No results matching ""