MPKitRegister Class Reference
Inherits from | NSObject |
---|---|
Conforms to | MPExtensionKitProtocol |
Declared in | MPKitRegister.h |
code
Kit code. Obtained from mParticle and informed to the Core SDK
@property (nonatomic, strong, nonnull, readonly) NSNumber *code
Discussion
Kit code. Obtained from mParticle and informed to the Core SDK
Declared In
MPKitRegister.h
wrapperInstance
Instance of the 3rd party kit wrapper implementation. The instance is allocated by the mParticle SDK and uses the class name provided by the className parameter. You should not set this property. It’s lifecycle is managed by the mParticle SDK
@property (nonatomic, strong, nullable) id<MPKitProtocol> wrapperInstance
Discussion
Instance of the 3rd party kit wrapper implementation. The instance is allocated by the mParticle SDK and uses the class name provided by the className parameter. You should not set this property. It’s lifecycle is managed by the mParticle SDK
See Also
Declared In
MPKitRegister.h
name
Kit name. Obtained from the 3rd party library provider and informed to the Core SDK
@property (nonatomic, strong, nonnull, readonly) NSString *name
Discussion
Kit name. Obtained from the 3rd party library provider and informed to the Core SDK
Declared In
MPKitRegister.h
className
Name of the class implementing the wrapper to forward calls to 3rd party kits
@property (nonatomic, strong, nonnull, readonly) NSString *className
Discussion
Name of the class implementing the wrapper to forward calls to 3rd party kits
Declared In
MPKitRegister.h
– initWithName:className:
Allocates and initializes a register to a 3rd party kit implementation
- (nullable instancetype)initWithName:(nonnull NSString *)name className:(nonnull NSString *)className
Parameters
name |
Kit name. Obtained from the 3rd party library provider and informed to the Core SDK |
---|---|
className |
Name of the class implementing the wrapper to forward calls to 3rd party kits |
Return Value
An instance of a kit register or nil if a kit register could not be instantiated
Discussion
Allocates and initializes a register to a 3rd party kit implementation
Declared In
MPKitRegister.h