Skip to content

Instantly share code, notes, and snippets.

@somtd
Created December 7, 2013 09:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save somtd/7839103 to your computer and use it in GitHub Desktop.
Save somtd/7839103 to your computer and use it in GitHub Desktop.
API Client for Parse REST API #BLOG
#import "AFHTTPClient.h"
@interface ParseApiClient : AFHTTPClient
+ (ParseApiClient *)sharedClient;
- (NSMutableURLRequest *)GETRequestForClass:(NSString *)className parameters:(NSDictionary *)parameters;
- (NSMutableURLRequest *)GETRequestForAllRecordsOfClass:(NSString *)className updatedAfterDate:(NSDate *)updatedDate;
@end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment