Created
December 7, 2013 09:38
-
-
Save somtd/7839103 to your computer and use it in GitHub Desktop.
API Client for Parse REST API #BLOG
This file contains hidden or 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
#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