Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
022f75f
first commit
Sep 22, 2015
8c3014f
set up and working with iTunes API request, need to test CLLocationMa…
Sep 22, 2015
26ed300
just before implementing the yelp api
Sep 24, 2015
ea8b988
Yelp API request is working :)
Sep 24, 2015
8d125ce
working on pulling data from the api now
Sep 24, 2015
10e4166
extracting data from Yelp API successfully
Sep 25, 2015
4fda4db
Segue to InstagramDetailViewController is working with api request :)
Sep 25, 2015
073914b
Images loading on InstagramDetailViewController
Sep 25, 2015
3fd019f
added Instagram logo to InstagramDetailViewController
Sep 26, 2015
d32365d
readjusting the ui in the InstagramDetailViewController
Sep 26, 2015
8e631ab
must enter both search term and city,state to get results
Sep 26, 2015
52fe53e
moved the UIAlertController into the makeYelpRequest.. method
Sep 26, 2015
adf09c7
added new fonts
Sep 26, 2015
39f2333
fixed ui on InstagramDetailViewController
Sep 26, 2015
0ebc8c8
moved YelpAPIRequest into APIManager class, working
Sep 29, 2015
bf0623a
created and implemented an instancetype method for the vegaNomSearchR…
Sep 29, 2015
a924155
added basic functionality to CLLocationManager
Sep 29, 2015
5994f76
implemented a custom alert view, cocoapod NYAlertViewController
Oct 1, 2015
76bb3f2
Fixed up the header in the InstagramDetailViewController storyboard
Oct 1, 2015
fda99c1
implemented custom table view cell and header view xib files
Oct 1, 2015
cccc3ec
InstaPostTableViewCell and InstaPostHeaderView now fully working in p…
Oct 1, 2015
a9b04d2
deleted unused InstagramPostsTableViewCell
Oct 1, 2015
31feb7d
implemented AFHTTPREquestOperation Manager and SDWebImage in Instagra…
Oct 1, 2015
7256f1d
added map to VegaNomViewController
Oct 2, 2015
d0794ac
map view is fully functioning
Oct 2, 2015
ab20b12
added navigationItem title, added CLLocationManager method getLocation
Oct 2, 2015
1ea923f
Update README.md
JustineKay Dec 20, 2015
724dcfe
Update README.md
JustineKay Dec 20, 2015
ef24f41
Update README.md
JustineKay Dec 20, 2015
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
Binary file added .DS_Store
Binary file not shown.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ DerivedData
*.hmap
*.ipa
*.xcuserstate

TalkinToTheNet/.DS_Store
# CocoaPods
#
# We recommend against adding the Pods directory to your .gitignore. However
Expand Down
13 changes: 9 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,16 +1,21 @@
# unit-2-hw-1
# Vegan Om Nom Nom

Welcome to the world of places.
###Description
Search for Vegan businesses using the Yelp API.
View location on a mapview.
View posts with the #restaurantName using the Instagram API.



### Objective
#### Originated from class assignment, unit-2-hw-1:
#####Objective
Using either the **[Foursquare API](https://developer.foursquare.com)** or the **[Yelp API](https://www.yelp.com/developers/documentation/v2/overview)**, fetch a list of places near a specific location.

Your application should also provide the ability to view additional data (category, address, avatar, etc)

**The interesting part**
On the detail page, your application must provide one additional piece of information provided by another api. For example, fetch the number of Twitter followers based on their twitter handle. Or pull instagram pictures based on the category of the venue.

I'll update this with some screens.

### Ideas
> **Twitter**
Expand Down
3 changes: 3 additions & 0 deletions TalkinToTheNet/Podfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
pod 'SDWebImage', '~>3.7'
pod 'AFNetworking', '~> 2.5'
pod 'NYAlertViewController'
38 changes: 38 additions & 0 deletions TalkinToTheNet/Podfile.lock
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
PODS:
- AFNetworking (2.6.0):
- AFNetworking/NSURLConnection (= 2.6.0)
- AFNetworking/NSURLSession (= 2.6.0)
- AFNetworking/Reachability (= 2.6.0)
- AFNetworking/Security (= 2.6.0)
- AFNetworking/Serialization (= 2.6.0)
- AFNetworking/UIKit (= 2.6.0)
- AFNetworking/NSURLConnection (2.6.0):
- AFNetworking/Reachability
- AFNetworking/Security
- AFNetworking/Serialization
- AFNetworking/NSURLSession (2.6.0):
- AFNetworking/Reachability
- AFNetworking/Security
- AFNetworking/Serialization
- AFNetworking/Reachability (2.6.0)
- AFNetworking/Security (2.6.0)
- AFNetworking/Serialization (2.6.0)
- AFNetworking/UIKit (2.6.0):
- AFNetworking/NSURLConnection
- AFNetworking/NSURLSession
- NYAlertViewController (1.3.0)
- SDWebImage (3.7.3):
- SDWebImage/Core (= 3.7.3)
- SDWebImage/Core (3.7.3)

DEPENDENCIES:
- AFNetworking (~> 2.5)
- NYAlertViewController
- SDWebImage (~> 3.7)

SPEC CHECKSUMS:
AFNetworking: 79f7eb1a0fcfa7beb409332b2ca49afe9ce53b05
NYAlertViewController: b93f82e2c1fc6d5e9485512ddbe7b481f463a074
SDWebImage: 1d2b1a1efda1ade1b00b6f8498865f8ddedc8a84

COCOAPODS: 0.38.2

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

206 changes: 206 additions & 0 deletions TalkinToTheNet/Pods/AFNetworking/AFNetworking/AFHTTPRequestOperation.m

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading