swift加载h5页面空白
背景
Swift 加载h5:
override func viewDidLoad() {
super.viewDidLoad()
// let myURL = URL(string:"https://www.baidu.com") // ok
let myURL = URL(string:"http://localhost:5173/") // not working 页面空白
let myRequest = URLRequest(url: myURL!)
webView.load(myRequest)
}}
本地是http服务,需要加个配置
用源码方式打开 info.plist 文件
<key>NSAppTransportSecuritykey>
<dict>
<key>NSAllowsArbitraryLoadskey>
<true/>
dict>
