Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/shaneafsar/yelplight
Week 2 assignment for Codepath's February 2015 iOS Swift class
https://github.com/shaneafsar/yelplight
Last synced: 25 days ago
JSON representation
Week 2 assignment for Codepath's February 2015 iOS Swift class
- Host: GitHub
- URL: https://github.com/shaneafsar/yelplight
- Owner: shaneafsar
- Created: 2015-02-09T05:19:56.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2015-02-16T23:48:14.000Z (over 9 years ago)
- Last Synced: 2024-04-17T03:40:01.756Z (7 months ago)
- Language: Swift
- Size: 11.1 MB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Yelp Light
This is a light app for finding and detailing location information. [Yelp API](http://www.yelp.com/developers).
Time spent: 18 hrs
### Features
#### Required
- [X] Search results page
- [X] Table rows should be dynamic height according to the content height
- [X] Custom cells should have the proper Auto Layout constraints
- [X] Search bar should be in the navigation bar (doesn't have to expand to show location like the real Yelp app does).
- [X] Filter page. Unfortunately, not all the filters are supported in the Yelp API.
- [X] The filters you should actually have are: category, sort (best match, distance, highest rated), distance, deals (on/off).
- [X] The filters table should be organized into sections as in the mock.
- [X] You can use the default UISwitch for on/off states. Optional: implement a custom switch
- [X] Clicking on the "Search" button should dismiss the filters page and trigger the search w/ the new filter settings.
- [X] Display some of the available Yelp categories (choose any 3-4 that you want).#### Optional
- [X] Search results page
- [X] Infinite scroll for restaurant results
- [X] Implement map view of restaurant results
- [X] Filter page
- [X] Radius filter should expand as in the real Yelp app
- [X] Categories should show a subset of the full list with a "See All" row to expand.
- [ ] Implement the restaurant detail page.#### Extra
- [X] Filter page: rounded corners on grouped sections (so difficult...)
### Walkthrough
#### Main
![Main walkthrough](yelpdemo2.gif)#### Landscape demo
![Landscape demo](yelpdemo3a.gif)#### Long name screenshot
![long name screenshot](Long_name_example.png)### Installation
* Requires Xcode 6.3 beta
* Retrieve the Yelp API tokens from http://developer.yelp.com
* Create a folder called Config in the main folder (the one that contains the Podfile)
* In the config folder, create YelpLightConfig.xcconfig
* Inside YelpLightConfig.xcconfig, add:````
YELP_LIGHT_CONSUMER_KEY = your-consumer-token
YELP_LIGHT_CONSUMER_SECRET = your-consumer-secret
YELP_LIGHT_ACCESS_TOKEN = your-token
YELP_LIGHT_ACCESS_SECRET = your-secret
````* Open the YelpLight.xcworkspace file, and build!
Credits
---------
* [Yelp API](http://www.yelp.com/developers)
* [AFNetworking](https://github.com/AFNetworking/AFNetworking)
* [BDBOAuth1Manager](https://github.com/bdbergeron/BDBOAuth1Manager)
* YelpClient oauth implementation:
* [RecommendIt](https://github.com/derrickshowers/RecommendIt)
* [iOSTwitterSwift](https://github.com/alexnj/iOSTwitterSwift)