码迷,mamicode.com
首页 > 其他好文 > 详细

KB-2

时间:2016-09-22 01:21:53      阅读:217      评论:0      收藏:0      [点我收藏+]

标签:

四:修改网页模式

     

 //UIWebView是一个网页浏览器 可以加载网页也可以加载一些本地文件, 如pdf,txt,html
    //-------------------------首先加载荣誉网页-----------------------------
    //加载网页需要在蓝色工程文件中 info
    //添加App Transport Security Settings
    //然后添加 Allow Arbitrary Loads , 后面的值设置为yes;
    UIWebView* webView = [[UIWebView alloc]initWithFrame:CGRectMake(0, 0, 320, 450)];
    NSURL* url = [NSURL URLWithString:@"http://www.kbms.io/know/PubHome_mobile.do"];
    if ([[UIApplication sharedApplication]canOpenURL:url]) {
        [[UIApplication sharedApplication]openURL:url];
        NSURLRequest* req = [NSURLRequest requestWithURL:url];
        [webView loadRequest:req];
        
        [self.view addSubview:webView];
    }

技术分享

 

 

五:修改启动页

     技术分享

 

 

左上:1242 × 2208 pixels

右上:750 × 1134 pixels

左下:640 × 960 pixels

右下:640 × 1136 pixels

 

六:修改侧栏图标

    像素:50*50

    技术分享

KB-2

标签:

原文地址:http://www.cnblogs.com/Z-D-/p/5894726.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!