Last active
April 19, 2018 22:43
-
-
Save gokselkoksal/560b4cb53ee474ac1e38e0850fbbbb95 to your computer and use it in GitHub Desktop.
Revisions
-
gokselkoksal revised this gist
Apr 19, 2018 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -3,7 +3,7 @@ protocol MovieListView: MovieListViewModelDelegate { func updateWithMovies(_ movies: [Movie]) func didTapOnReload() func didTapOnMovie(at index: Int) func showDetailView(for movie: Movie) } protocol MovieListViewModelDelegate: class { -
gokselkoksal created this gist
Apr 19, 2018 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,17 @@ protocol MovieListView: MovieListViewModelDelegate { private var viewModel: MovieListViewModel func updateWithMovies(_ movies: [Movie]) func didTapOnReload() func didTapOnMovie(at index: Int) func pushDetailView(for movie: Movie) } protocol MovieListViewModelDelegate: class { func viewModelDidUpdate(_ model: MovieListViewModel) } protocol MovieListViewModel { weak var delegate: MovieListViewModelDelegate? { get set } var movies: [Movie] { get } func fetchMovies() }