Created
May 7, 2017 19:24
-
-
Save anuragajwani/37fd33fee25c6ec54cd973817697c64e 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 fetchMovies(onSuccess: ([Movie]) -> Void) { | |
| let exampleMovie = Movie(title: "Movie title", year: "2017", genre: ["Action", "Adventure"]) | |
| onSuccess([exampleMovie]) | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment