A user should be able to search for their favorite Marvel characters and see detailed info and images about those characters.
- When your app opens, it should display a list of Marvel characters including their picture thumbnail.
- Include a search bar that makes it easier for the user to find their favorite characters.
- Be sure to include infinite scrolling so when you get to the bottom of the list it keeps loading superheroes.
- Build interfaces with Storyboards or XIB files, not purely in code using UIKit.
- Use the Marvel API at https://developer.marvel.com/ as a data source.
- Persist the data that you have already fetched from the server. (using CoreData)
- Implement some unit tests or UI tests. (unit test for online and offline data)
- Limited use of third party libraries is allowed (used Reachability by ashleymills, no CocoaPods for install simplicity)
- Clone repo: https://github.com/philmodin/MarvelCodingExercise.git
- Open:
MarvelCodingExercise.xcodeproj - Set team and bundle ID.
- Notice
Keys.plistis missing. Ignore it and build project, this file will be auto generated. - Open
Keys.plistIf you have Public and Private keys for Marvel, paste them here. Otherwise register at: https://developer.marvel.com/ - Attach device and run the project.
- If needed, check trusted apps in iPhone device management settings for your developer profile.

