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
PODS: | |
- AFNetworking (2.5.0): | |
- AFNetworking/NSURLConnection (= 2.5.0) | |
- AFNetworking/NSURLSession (= 2.5.0) | |
- AFNetworking/Reachability (= 2.5.0) | |
- AFNetworking/Security (= 2.5.0) | |
- AFNetworking/Serialization (= 2.5.0) | |
- AFNetworking/UIKit (= 2.5.0) | |
- AFNetworking/NSURLConnection (2.5.0): | |
- AFNetworking/Reachability |
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
#define declare_property(name, value) class __declare__NOT_A_CLASS__; + (typeof(value))name { return (value); } |
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
#import <Foundation/Foundation.h> | |
#import <JSONModel/JSONModel.h> | |
@interface ConditionalJsonModel : JSONModel | |
- (NSDictionary*)classMapping; | |
- (NSString*)classNameProperty; |
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
#import <Foundation/Foundation.h> | |
typedef void (^MHCancelHandler)(void); | |
@interface MHCancelToken : NSObject | |
- (void)onCancel:(MHCancelHandler)cancelHandler; | |
- (void)cancel; |