Added statusbar background, including API to change its background color

This commit is contained in:
Shazron Abdullah
2013-10-06 00:47:33 -07:00
parent 2e15c9c025
commit da275b579f
3 changed files with 29 additions and 0 deletions
+3
View File
@@ -23,6 +23,8 @@
@interface CDVStatusBar : CDVPlugin {
@protected
BOOL _statusBarOverlaysWebView;
@protected
UIView* _statusBarBackgroundView;
}
@property (atomic, assign) BOOL statusBarOverlaysWebView;
@@ -34,5 +36,6 @@
- (void) styleBlackTranslucent:(CDVInvokedUrlCommand*)command;
- (void) styleBlackOpaque:(CDVInvokedUrlCommand*)command;
- (void) statusBarBackgroundColorByName:(CDVInvokedUrlCommand*)command;
@end