Last active
August 6, 2017 13:30
-
-
Save victor-pavlychko/2915df1f59b22b9c381b0e670f6f1b84 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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