Skip to content

Instantly share code, notes, and snippets.

@Kmohamed
Created March 2, 2019 14:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Kmohamed/ae12bce6339ab377e877f79eb2c8d846 to your computer and use it in GitHub Desktop.
Save Kmohamed/ae12bce6339ab377e877f79eb2c8d846 to your computer and use it in GitHub Desktop.
class MoviesListModelDelegateMock: NSObject, MoviesListModelDelegate {
public var movies:[Movie] = []
func didFetchMovies(success: Bool, movies: [Movie]) {
self.movies = movies;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment