Repository URL to install this package:
//
// DESplashScreenHandler.h
// HelloCordova
//
// Created by Marco Bonati on 23/02/2017.
//
//
#ifndef DESplashScreenHandler_h
#define DESplashScreenHandler_h
@protocol DESplashScreenProvider;
@class CDVViewController;
@interface DESplashScreenManager : NSObject
+ (id)sharedInstance;
- (void)installWithProvider:(id<DESplashScreenProvider>)splashProvider onViewController:(CDVViewController*)mainViewController;
- (void)installDefault:(CDVViewController*)mainViewController;
- (void)showSplash;
- (void)hideSplash;
- (void)destroySplash;
- (BOOL)isSplashVisible;
@end
#endif DESplashScreenHandler_h