Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sarat-ravi/rottentomatoes
A Rotten Tomatoes iOS Client
https://github.com/sarat-ravi/rottentomatoes
Last synced: about 2 months ago
JSON representation
A Rotten Tomatoes iOS Client
- Host: GitHub
- URL: https://github.com/sarat-ravi/rottentomatoes
- Owner: sarat-ravi
- Created: 2015-02-08T06:02:45.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2015-02-09T02:22:57.000Z (almost 10 years ago)
- Last Synced: 2024-04-14T19:51:58.907Z (9 months ago)
- Language: Objective-C
- Homepage:
- Size: 30.7 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Rotten Tomatoes
This is a movies app displaying box office and top rental DVDs using the [Rotten Tomatoes API](http://developer.rottentomatoes.com/docs/read/JSON).
Time spent: `12` hours
### Features
#### Required
- [X] User can view a list of movies. Poster images load asynchronously.
- [X] User can view movie details by tapping on a cell.
- [X] User sees loading state while waiting for the API.
- [X] User sees error message when there is a network error
- [X] User can pull to refresh the movie list.##### Network Error Screen Shot
![Network Error Screen Shot](rotten_tomatoes_screen_shot.png)#### Optional
- [ ] All images fade in.
- [X] For the larger poster, load the low-res first and switch to high-res when complete.
- [ ] All images should be cached in memory and disk: AppDelegate has an instance of `NSURLCache` and `NSURLRequest` makes a request with `NSURLRequestReturnCacheDataElseLoad` cache policy. I tested it by turning off wifi and restarting the app.
- [ ] Customize the highlight and selection effect of the cell.
- [X] Customize the navigation bar.
- [X] Add a tab bar for Box Office and DVD.
- [X] Add a search bar: pretty simple implementation of searching against the existing table view data.### Walkthrough
![Video Walkthrough](rotten_tomatoes.gif)Credits
---------
* [Rotten Tomatoes API](http://developer.rottentomatoes.com/docs/read/JSON)
* [AFNetworking](https://github.com/AFNetworking/AFNetworking)