ios - uiwebview 不适用于 Swift 2.0
<p><p>我在 Xcode 6.4 中用于打开 uiwebview 的代码在启动模拟器时不会为 Xcode 7 加载。</p>
<pre><code>class ViewController: UIViewController {
@IBOutlet var webLaundry: UIWebView!
func loadWebPage(){
let theURL = "http://www.google.com"
let theRequestURL = NSURL (string: theURL)
let theRequest = NSURLRequest (URL: theRequestURL!)
webLaundry.loadRequest(theRequest)
}
override func viewDidLoad() {
super.viewDidLoad()
loadWebPage()
// Do any additional setup after loading the view, typically from a nib.
}
</code></pre>
<p>我应该改变什么来解决这个问题?</p></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>这是苹果新的安全要求。 iOS 9 中的应用程序传输安全性。 </p>
<p>你需要做的是:</p>
<ol>
<li><p>在xcode 7中,在你的项目中,找到“Info.plist”,右键,以“源代码”打开。</p></li>
<li><p>把单词放在最后和</p></li>之间
</ol>
<p><code>
<key>NSAppTransportSecurity</key>
<字典>
<key>NSAllowsArbitraryLoads</key><true/>
</dict>
</code></p>
<ol 开始=“3”>
<li>运行你的项目</li>
<li> <a href="https://forums.developer.apple.com/message/5857#5857" rel="noreferrer noopener nofollow">Source</a> </li>
</ol></p>
<p style="font-size: 20px;">关于ios - uiwebview 不适用于 Swift 2.0,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/32723488/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/32723488/
</a>
</p>
页:
[1]