Skip to content

Instantly share code, notes, and snippets.

View pj4533's full-sized avatar

PJ Gray pj4533

View GitHub Profile
@pj4533
pj4533 / gist:5108112
Last active December 14, 2015 15:29
Example AFHTTPClient request
[client getPath:path parameters:parameters success:^(AFHTTPRequestOperation *operation, id responseObject) {
// put a breakpoint for curlme here
NSLog("awesome stuff: %@", responseObject);
} failure:^(AFHTTPRequestOperation *operation, NSError *error) {
NSLog("fail bro");
}];
@pj4533
pj4533 / UIBarButtonItem+ETBlockActions.h
Created September 20, 2012 14:16
Respond to button events with blocks
#import <UIKit/UIKit.h>
@interface UIBarButtonItem (ETBlockActions)
- (id) initWithTitle:(NSString *)title style:(UIBarButtonItemStyle)style eventHandler:(void(^)(void))handler;
@end