Skip to content

Latest commit

 

History

History
25 lines (20 loc) · 1.12 KB

README.md

File metadata and controls

25 lines (20 loc) · 1.12 KB

iOS Coding Challenge

The Challenge

Write a movies app using The Movie Database API. The app should start by displaying a list of movies currently in theatres. The list should be searchable with autocompletion. Movies can be tapped to view more details.

App Requirements

  1. Display a collection of movies currently in theatres (hint: use the /movie/now_playing endpoint).
  2. Make a detail screen with a backdrop photo, title and a plot overview.
  3. Write an autocompletion search for the movie list. (hint: use the /search/movie endpoint).

Code requirements

  • Code should be written in Swift.
  • Views should use autolayout
  • Views should be written programmatically.
  • Third-party libraries should be used sparingly.

Judging

The coding challenge will be judged on:

  • Architecture and approach
  • Attention to detail
  • Code readability
  • Knowledge of iOS core SDKs.

First Second