mirror of
https://github.com/purplecabbage/phonegap-plugins.git
synced 2026-01-14 08:57:53 -05:00
18 lines
438 B
Objective-C
18 lines
438 B
Objective-C
#import <Foundation/Foundation.h>
|
|
#import "AppDelegate.h"
|
|
#import "FDStatusBarNotifierView.h"
|
|
|
|
#import <Cordova/CDVPlugin.h>
|
|
|
|
@interface StatusBarNotifier: CDVPlugin {
|
|
NSMutableDictionary* callbackIds;
|
|
NSString* messageField;
|
|
}
|
|
|
|
@property (nonatomic, retain) NSMutableDictionary* callbackIds;
|
|
@property (nonatomic, retain) NSString* messageField;
|
|
|
|
- (void) show:(NSMutableArray*)arguments withDict:(NSMutableDictionary*)options;
|
|
|
|
@end
|