Skip to content

Instantly share code, notes, and snippets.

@jchudzynski
Created December 3, 2013 21:42
Show Gist options
  • Save jchudzynski/7777955 to your computer and use it in GitHub Desktop.
Save jchudzynski/7777955 to your computer and use it in GitHub Desktop.
Contains methods that are making networking calls and parse the response
/*!
@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