iOS app written in Swift to explore movies using the MovieDB API. This project was made as an exercise in Globant by Igor Andruskiewitsch.
This project was made with XCode 10.1 and has the following requisites:
To perform the setup:
(1) Clone the project
(2) run carthage update --platform iOS
(3) Setup the API Key
(4) Open the .xcodeproj file from XCode
(5) Run! 💣
To setup the API key, you first need to create a key from MovieDB,
then create a file in MovieDB/MovieDB/API_KEY.plist
with the following content:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>API_KEY</key>
<string>**YOUR-API-KEY**</string>
</dict>
</plist>
And you are good to go! 😎