I am implementing a search interface for my application, so basically I will pass the search keyword from one ViewController to another ViewController.
Just a quick note for those looking into this issue it has been renamed to Destination
let nav = segue.destination as! UINavigationController
let svc = nav.topViewController as! SearchViewController
svc.toPassSearchKeyword = searchKeyword;