12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- #import <Foundation/Foundation.h>
- #import "FABAttributes.h"
- NS_ASSUME_NONNULL_BEGIN
- #if TARGET_OS_IPHONE
- #if __IPHONE_OS_VERSION_MIN_REQUIRED < 60000
- #error "Fabric's minimum iOS version is 6.0"
- #endif
- #else
- #if __MAC_OS_X_VERSION_MIN_REQUIRED < 1070
- #error "Fabric's minimum OS X version is 10.7"
- #endif
- #endif
- @interface Fabric : NSObject
- + (instancetype)with:(NSArray *)kitClasses;
- + (instancetype)sharedSDK;
- @property (nonatomic, assign) BOOL debug;
- - (id)init FAB_UNAVAILABLE("Use +sharedSDK to retrieve the shared Fabric instance.");
- + (instancetype)new FAB_UNAVAILABLE("Use +sharedSDK to retrieve the shared Fabric instance.");
- @end
- NS_ASSUME_NONNULL_END
|