forked from hsandhu/HSInstagram
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Harminder Sandhu
committed
Feb 22, 2012
1 parent
962a420
commit fc38302
Showing
1 changed file
with
26 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
#### Overview | ||
|
||
This repository provides a starting point to build an application based on the Instagram platform. In addition to the Instagram API model, the respository includes a sample iOS project. | ||
|
||
#### Requirements | ||
|
||
iOS 5 with ARC enabled | ||
|
||
#### Dependencies (included) | ||
|
||
AFNetworking | ||
|
||
|
||
#### Installation | ||
|
||
Simply copy the /Vendor/HSInstagram source files from the sample project into your XCode project | ||
|
||
#### Sample Usage | ||
|
||
Retrieving images for a specific location: | ||
|
||
CLLocationCoordinate2D coord = self.locationService.currentLocation.coordinate; | ||
[HSInstagramLocation getLocationsWithCoord:coord block:^(NSArray *records) { | ||
self.locations = records; | ||
[self.tableView reloadData]; | ||
}]; |