Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Bower components Debian packages RPM packages NuGet packages

vipera-npm-registry / de-splashscreen-plugin   js

Repository URL to install this package:

Version: 0.0.4 

/ src / ios / DESplashScreenManager.h

//
//  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