Open avisual opened 7 years ago
override func prepare(for segue: UIStoryboardSegue, sender: Any?) {
if segue.identifier == "wifiSettings" {
if let toViewController = segue.destination as? WifiSettingsVC {
toViewController.browser = browser
}
}
}
does not seem to have context when passed
I've tried using a new wkzombie instance. But it does not seem to work as expected.
When I open a new view controller using a new or passed instance of wkzombie it seems to be none responsive. Am I stuck in a closure or wrong thread
Any help from other developers would be greatly appreciated.
How can I pass browsers between view controllers and maintain state and context?