Swift-第一个程序_网页展示

2018-09-06 16:03:02 浏览数 (1)

1、工程的建立

a、选择第二个(Greate a new Xcode project)

20150308090700171.png

b、左边选择IOS中的Application,右边Singl View Application,最后next

20150308090702172.png

c、在Product Name输入程序名,比如fistIOS

20150308090702173.png

d、选择程序存储位置

20150308090702174.png

下面是代码

代码语言:javascript复制
override func viewDidLoad() {
     super.viewDidLoad()
    setWebView() // 函数的调用,一定要写在方法内
}

func setWebView()
{
    let webView = UIWebView(frame:CGRect(x:0, y:0, width:375, height:667))
    let url = NSURL(string:"http://www.jianshu.com/users/bdf11cce83a1/latest_articles")
    let request = NSURLRequest(url:url! as URL)
    webView.loadRequest(request as URLRequest)
    self.view .addSubview(webView)
    
}

override func didReceiveMemoryWarning() {
    super.didReceiveMemoryWarning()
    // Dispose of any resources that can be recreated.
}

注意在使用网址时一定要添加网址处理代码,否则无法显示

代码语言:javascript复制
<key>NSAppTransportSecurity</key>
<dict>
    <key>NSAllowsArbitraryLoads</key>
    <true/>
</dict>

添加的位置 如图

WechatIMG2.jpeg

WechatIMG3.jpeg

都添加完以后,运行结果如图

Simulator Screen Shot 2016年10月18日 16.52.02.png

0 人点赞