| 123456789101112131415161718192021 |
- //
- // RNUMConfigure.m
- // UMComponent
- //
- // Created by wyq.Cloudayc on 14/09/2017.
- // Copyright © 2017 Facebook. All rights reserved.
- //
- #import "RNUMConfigure.h"
- @implementation RNUMConfigure
- + (void)initWithAppkey:(NSString *)appkey channel:(NSString *)channel
- {
- SEL sel = NSSelectorFromString(@"setWraperType:wrapperVersion:");
- if ([UMConfigure respondsToSelector:sel]) {
- [UMConfigure performSelector:sel withObject:@"react-native" withObject:@"1.0"];
- }
- [UMConfigure initWithAppkey:appkey channel:channel];
- }
- @end
|