Created
March 4, 2012 13:16
-
-
Save flandy84/1972949 to your computer and use it in GitHub Desktop.
optimized Objective-C Header File
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
| //.h File optimized Objective-C Class Header | |
| @interface SimpleHttpRequest : NSObject | |
| @property (nonatomic, weak) id delegate; | |
| @property (nonatomic, assign) SEL didFailSelector; | |
| @property (nonatomic, copy, readonly) NSURLRequest* urlrequest; | |
| +(SimpleHttpRequest *)requestWithNSURLRequest:(NSURLRequest*)urlrequest; | |
| -(void)startAsynchronous; | |
| -(void)cancel; | |
| @end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment