Skip to content

Commit

Permalink
added README
Browse files Browse the repository at this point in the history
  • Loading branch information
Harminder Sandhu committed Feb 22, 2012
1 parent 962a420 commit fc38302
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions README.md
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];
}];

0 comments on commit fc38302

Please sign in to comment.