亚洲免费乱码视频,日韩 欧美 国产 动漫 一区,97在线观看免费视频播国产,中文字幕亚洲图片

      1. <legend id="ppnor"></legend>

      2. 
        
        <sup id="ppnor"><input id="ppnor"></input></sup>
        <s id="ppnor"></s>

        ios簡(jiǎn)單加載一個(gè)網(wǎng)頁(yè)的方法

        字號(hào):


            .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:]];
            //運(yùn)行一下,百度頁(yè)面就出來(lái)了
            [self.webview loadrequest:request];
            }