使用不同ViewController中的按钮更改WKWebview URL

时间:2016-06-24 08:53:47

标签: ios xcode swift webview wkwebview

我是iOS开发的新手,想尝试使用webview构建混合iOS应用程序。我一直在学习,并且已经找到了我在这里或其他网站上找到的大多数答案,但我已经到了我被困的地步。

我在主ViewController中设置了我的webview设置,所有设置都很好。我正在使用库来创建一个效果很好的侧面菜单。但是由于库的工作方式,菜单是在另一个ViewController中构建的。我想在侧边菜单中填充将在webview中加载的链接。这可能吗?

编辑:我可能还应该提到我在快速完成这一切。

EDIT2:以下是我在旁边菜单中使用的框架的链接:https://github.com/jonkykong/SideMenu

该框架几乎允许您使用tableview构建自己的视图。

2 个答案:

答案 0 :(得分:0)

我不知道我是否正确理解了你的问题。以下是我对你的问题的看法:

你的MenuViewController包含一个UITableView,它是一个菜单列表,当选择一个单元格时,你的MainViewController的webview加载一个链接URL,但这个URL放在MenuViewController中,对吗?

如果这是您的问题,您可以将其解析为以下解决方案:

MainViewController添加通知观察者,而MenuViewController发布通知

// MainViewController
class ViewController: UIViewController {
let webView = UIWebView()

override func viewDidLoad() {
    super.viewDidLoad()
    webView.frame = self.view.bounds
    self.view.addSubview(webView)

    NSNotificationCenter.defaultCenter().addObserver(self, selector: #selector(ViewController.handleNotification(_:)), name: "OpenURL", object: nil)
}

func handleNotification(notification:NSNotification) {
    if let url = notification.userInfo?["url"] {
        webView.loadRequest(NSURLRequest(URL: url as! NSURL))
    }
}
}

// MenuViewController
class MenuViewController: UIViewController, UITableViewDelegate {
func tableView(tableView: UITableView, didSelectRowAtIndexPath indexPath: NSIndexPath) {
    let userInfo = ["url" : your_url]
    NSNotificationCenter.defaultCenter().postNotificationName("OpenURL", object: nil, userInfo: userInfo)
}
}

<强>更新

如何使用UITableView

class MenuViewController: UIViewController, UITableViewDelegate, UITableViewDataSource {
let tableView = UITableView(frame: CGRectZero, style: .Plain)
let urls = ["https://google.com", "https://youtube.com", "http://stackoverflow.com/"]
let cellIdentifier = "CellIdentifier"

override func viewDidLoad() {
    super.viewDidLoad()

    tableView.delegate = self
    tableView.dataSource = self
    tableView.frame = view.bounds
    tableView.registerClass(UITableViewCell.self, forCellReuseIdentifier: cellIdentifier)

    view.addSubview(tableView)
}

func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
    return urls.count
}

func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
    let cell = tableView.dequeueReusableCellWithIdentifier(cellIdentifier, forIndexPath: indexPath)
    cell.textLabel?.text = urls[indexPath.row]
    return cell
}


func tableView(tableView: UITableView, didSelectRowAtIndexPath indexPath: NSIndexPath) {
    let url = NSURL(string: urls[indexPath.row])!
    let userInfo = ["url" : url]
    NSNotificationCenter.defaultCenter().postNotificationName("OpenURL", object: nil, userInfo: userInfo)
}
}

答案 1 :(得分:0)

您可以使用notifications

解决此问题

首先,您需要为显示菜单项的tableView创建UITableViewController。 (如果您还没有以编程方式设置菜单项;我建议以编程方式执行此操作)

\[tableView(_:didSelectRowAtIndexPath:)\]方法中,您需要发布包含所选项目信息的通知。

示例:

let kMenuItemSelectedNotification = "MenuItemSelected" //this should be a global constant. It identifies the notification

let infoDictionary = ["menuItem":"item1"] //a dictionary containing all information you need in your VC to change the WebView

NSNotificationCenter.defaultCenter().postNotificationName(kMenuItemSelectedNotification, object:nil, userInfo:infoDictionary)

在包含WKWebView的视图控制器中,您需要在viewDidLoad中添加通知的观察者。

NSNotificationCenter.defaultCenter().addObserver(self, selector: "selector for your method:", name: kMenuItemSelectedNotification, object: nil)

使用选择器调用的方法处理WebView内容的更改。

如果您还不熟悉通知,则应该查看this教程。它解释了如何调用和接收通知以及处理userInfo

中发送的信息