使用plist将URL数组加载到UIWebView中

时间:2018-04-18 09:14:03

标签: ios swift

有没有办法将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看起来像

enter image description here

菜单项1-7是我制作的侧边菜单。我想在点击每个菜单项时显示URL的不同负载

0 个答案:

没有答案