17 lines
359 B
Objective-C
17 lines
359 B
Objective-C
/**
|
||
* SplashScreen
|
||
* 启动屏
|
||
* from:http://www.devio.org
|
||
* Author:CrazyCodeBoy
|
||
* GitHub:https://github.com/crazycodeboy
|
||
* Email:crazycodeboy@gmail.com
|
||
*/
|
||
#import <React/RCTBridgeModule.h>
|
||
#import <UIKit/UIKit.h>
|
||
|
||
@interface RNSplashScreen : NSObject<RCTBridgeModule>
|
||
+ (void)showSplashInRootView:(UIView*)rootView;
|
||
+ (void)show;
|
||
+ (void)hide;
|
||
@end
|