Created
December 3, 2013 21:42
-
-
Save jchudzynski/7777955 to your computer and use it in GitHub Desktop.
Contains methods that are making networking calls and parse the response
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
/*! | |
@class WebServicesHelper | |
@abstract | |
Contains methods that are making networking calls and parse the response | |
@discussion | |
respond to, e.g., authentication challenges | |
*/ | |
#import <Foundation/Foundation.h> | |
@interface WebServicesHelper : NSObject | |
-(void)getDataWithCompletionBlock:(void (^)(NSData * data)) completion andErrorBlock:(void (^)(NSError *))errorBlock; | |
@end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment