Flix Feed is an iOS app that fetches and displays movies from The Movie Database (TMDB) API in a scrollable feed. The project demonstrates how to build a modern iOS application using UIKit, network requests, and asynchronous image loading.
Flix Feed fetches data from the TMDB API and displays it in a table view. Each cell shows a movie poster, title, and description.
- Fetch movie data from The Movie Database (TMDB) API
- Display a scrollable list of movies using
UITableView
- Each movie cell includes:
- Poster image
- Movie title
- Movie overview
- Each movie cell includes:
- Swift
- UIKit
- URLSession
- TMDB API
- Clone the repository:
git clone https://github.com/your-username/flix-feed.git cd flix-feed
This project uses TMDB and the TMDB APIs but is not endorsed, certified, or otherwise approved by TMDB. You must register for an API key and add it to your network request headers or URL as required.