Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save victor-pavlychko/2915df1f59b22b9c381b0e670f6f1b84 to your computer and use it in GitHub Desktop.
Save victor-pavlychko/2915df1f59b22b9c381b0e670f6f1b84 to your computer and use it in GitHub Desktop.
private func presentDetails(for item: ItemModel) {
let viewController = DetailsViewController.makeWithStoryboard()
viewController.delegate = self
viewController.model = item
present(viewController, animated: true, completion: nil)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment