Created
March 3, 2012 21:21
-
-
Save flandy84/1968362 to your computer and use it in GitHub Desktop.
regular 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 regular Objective-C Header | |
@interface SimpleHttpRequest : NSObject <NSURLConnectionDelegate>{ | |
__weak id _delegate; | |
SEL _didFailSelector; | |
NSURLRequest* _urlrequest; | |
NSObject* _iVarABC; | |
} | |
@property (nonatomic, weak) id delegate; | |
@property (nonatomic, assign) SEL didFailSelector; | |
@property (nonatomic, copy) NSURLRequest* urlrequest; | |
@property (nonatomic, weak) IBOutlet UIButton *deleteButton; | |
+(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