This app lets you surf through nearby places to eat on the map
It gives you the list of food places from this site
You can move around 20 first of them as pins on the map or look through their entirety in a separate list
It also stores the last 20 pins displayed on the map offline (in a Core Data)
To get this app up and running
- clone the repository and open NearbyPlaces.xcodeproj
- install carthage, if necessary (
brew install carthage
) - run
carthage update
- if GoogleMaps framework throws compilation error, add frameworks from path
Carthage/Build/iOS/
in target'sGeneral
tab or inBuild Phases - Link Binary With Libraries
(In case of unsuccessful attempt, visit this link) - You're good to go!
The project is written in MVC (classic MVC pattern, basically MVP, not Apple MVC), with principles of SOLID in mind. Samples of Unit Tests are also provided.