Skip to content

Instantly share code, notes, and snippets.

View sebastianconcept's full-sized avatar

Sebastian Sastre sebastianconcept

View GitHub Profile
override func prepare(for segue: UIStoryboardSegue, sender: Any?) {
switch segue.identifier! {
case "showTodoDetail":
// Get the detail view controller in a local var
let todoDetailVC = segue.destination as! TodoDetailViewController
// Get the specific model in a local var
let cell = sender as! TodoTableViewCell