The clone of Netflix iOS application that displays movies and searches them from TMDB API.
This appication allows users to see Top Rated, Popular, Upcoming movies from the API. Netflix Clone collects and displays them in the CollectionView. The users also could search for desired movies. Also, it has downloads where the user can store desired movies to watch later.
- Swift language.
- SDWebImage library.
- CoreData library.
- SnapKit library.
- UIKit library.
- TMDB API API.
- Youtube API API.
struct Constants{
static let API_KEY = "API_KEY" // Enter an api key
static let BASE_URL = "https://api.themoviedb.org"
static let YoutubeAPI_KEY = "YoutubeAPI_KEY" // Enter a Youtube API
static let YoutubeBaseURL = "https://youtube.googleapis.com/youtube/v3/search?"
}
Enter your API_KEY and YoutubeAPI_KEY inside the quotes marks! Without it the application will not work.