Skip to content

irfanizudin/netflix-clone

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

23 Commits
 
 
 
 
 
 
 
 

Repository files navigation

SwiftFlix

SwiftFlix is a Netflix native iOS app clone.

swiftflix

Features

  • Show movie list based on Trending Movies, Trending TV, Popular Movies, Top Rated TV, Upcoming Movies
  • Search movies
  • Download movies and save to coredata
  • Show movie trailer

Tech Stack

  • UIKit
  • Programmatic UI
  • Coredata
  • WebKit

Architecture

  • MVC architecture pattern

Dependency

Swift Package Manager is used as a dependency manager. List of dependecies:

API

Usage

  • To run this app properly, you will need an API key from TMDB API and YouTube API.
  • After obtaining the API key, follow these steps:
    1. Create a Swift file named "APIKey.swift" in the "Managers" folder.
    2. Add the following code and replace "YOUR_TMDB_API_KEY" and "YOUR_YOUTUBE_API_KEY" with your respective API keys:
      struct APIKey {
          static let tmdbAPIKey = "YOUR_TMDB_API_KEY"
          static let youtubeAPIKey = "YOUR_YOUTUBE_API_KEY"
      }
      
    3. The app is now ready to be run.