有没有办法将String
数组加载到URL
加载到UIWebview
?我正在使用plist
来获取值。我检索值的错误代码是
if let path = Bundle.main.path(forResource: "BOITLIST", ofType: "plist") {
let dictRoot = NSDictionary(contentsOfFile: path)
if let dict = dictRoot {
let userEnteredData = dict["webURL"] as! [String]
let url = URL(string: userEnteredData)
webView.loadRequest(URLRequest(url:url!))
}
}
我的plist看起来像
菜单项1-7是我制作的侧边菜单。我想在点击每个菜单项时显示URL
的不同负载