Last active
April 19, 2018 22:43
-
-
Save gokselkoksal/560b4cb53ee474ac1e38e0850fbbbb95 to your computer and use it in GitHub Desktop.
This file contains 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
protocol MovieListView: MovieListViewModelDelegate { | |
private var viewModel: MovieListViewModel | |
func updateWithMovies(_ movies: [Movie]) | |
func didTapOnReload() | |
func didTapOnMovie(at index: Int) | |
func showDetailView(for movie: Movie) | |
} | |
protocol MovieListViewModelDelegate: class { | |
func viewModelDidUpdate(_ model: MovieListViewModel) | |
} | |
protocol MovieListViewModel { | |
weak var delegate: MovieListViewModelDelegate? { get set } | |
var movies: [Movie] { get } | |
func fetchMovies() | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment