ZGZOO / flix_codepath

0 stars 1 forks source link

flix_codepath

Flix is an app that allows users to browse movies from the The Movie Database API.

let url = URL(string: "https://api.themoviedb.org/3/movie/now_playing?api_key=a07e22bc18f5cb106bfe4cc1f83ad8ed")!
let request = URLRequest(url: url, cachePolicy: .reloadIgnoringLocalCacheData, timeoutInterval: 10)
let session = URLSession(configuration: .default, delegate: nil, delegateQueue: OperationQueue.main)
let task = session.dataTask(with: request) { (data, response, error) in
   // This will run when the network request returns
   if let error = error {
      print(error.localizedDescription)
   } else if let data = data {
      let dataDictionary = try! JSONSerialization.jsonObject(with: data, options: []) as! [String: Any]

      // TODO: Get the array of movies
      // TODO: Store the movies in a property to use elsewhere
      // TODO: Reload your table view data

   }
}
task.resume()

Flix Part 1

User Stories

REQUIRED (10pts)

BONUS

App Walkthrough GIF



Notes

Describe any challenges encountered while building the app.


Flix Part 2

User Stories

REQUIRED (10pts)

BONUS

App Walkthrough GIF

(required part):


(first bonus part):


Notes

Describe any challenges encountered while building the app.