Files
phonegap-plugins/iPhone/SplashScreen/SplashScreen.h
2011-08-04 23:56:19 +02:00

22 lines
530 B
Objective-C
Executable File

//
// SplashScreen.h
//
// Created by André Fiedler on 07.01.11.
// Copyright 2011 André Fiedler, <fiedler.andre at gmail dot com>
// MIT licensed
//
#ifdef PHONEGAP_FRAMEWORK
#import <PhoneGap/PGPlugin.h>
#else
#import "PGPlugin.h"
#endif
@interface SplashScreen : PGPlugin {
IBOutlet UIImageView *imageView;
}
- (void)createSplashScreen:(NSString*)imageName : (NSString*)imageType;
- (void)show:(NSArray*)arguments withDict:(NSDictionary*)options;
- (void)hide:(NSArray*)arguments withDict:(NSDictionary*)options;
@end