diff options
Diffstat (limited to 'iPhone/CordovaLib/Classes/CDVSplashScreen.h')
-rwxr-xr-x | iPhone/CordovaLib/Classes/CDVSplashScreen.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/iPhone/CordovaLib/Classes/CDVSplashScreen.h b/iPhone/CordovaLib/Classes/CDVSplashScreen.h index b0d8615..a0868a0 100755 --- a/iPhone/CordovaLib/Classes/CDVSplashScreen.h +++ b/iPhone/CordovaLib/Classes/CDVSplashScreen.h @@ -20,7 +20,11 @@ #import <Foundation/Foundation.h> #import "CDVPlugin.h" -@interface CDVSplashScreen : CDVPlugin {} +@interface CDVSplashScreen : CDVPlugin { + UIActivityIndicatorView* _activityView; + UIImageView* _imageView; + UIView* _parentView; +} - (void)show:(CDVInvokedUrlCommand*)command; - (void)hide:(CDVInvokedUrlCommand*)command; |