Minor fix
This commit is contained in:
parent
a24bd2f297
commit
e2bce07b36
|
|
@ -10,8 +10,6 @@
|
|||
#import <UIKit/UIKit.h>
|
||||
#import "TLYShyNavBarFade.h"
|
||||
|
||||
@class TLYShyViewController;
|
||||
|
||||
@protocol TLYShyNavBarManagerDelegate;
|
||||
|
||||
/** CLASS DESCRIPTION:
|
||||
|
|
@ -77,7 +75,7 @@
|
|||
*/
|
||||
@property (nonatomic, weak) id<TLYShyNavBarManagerDelegate> delegate;
|
||||
|
||||
@property (nonatomic, strong, readonly) TLYShyViewController *navBarController;
|
||||
@property (nonatomic) BOOL handleStatusBar;
|
||||
|
||||
- (void)expand;
|
||||
|
||||
|
|
|
|||
|
|
@ -216,6 +216,15 @@ static void * const kTLYShyNavBarManagerKVOContext = (void*)&kTLYShyNavBarManage
|
|||
self.extensionController.sticky = stickyExtensionView;
|
||||
}
|
||||
|
||||
- (BOOL)handleStatusBar
|
||||
{
|
||||
return self.navBarController.handleStatusBar;
|
||||
}
|
||||
|
||||
- (void)setHandleStatusBar:(BOOL)handleStatusBar
|
||||
{
|
||||
self.navBarController.handleStatusBar = handleStatusBar;
|
||||
}
|
||||
|
||||
#pragma mark - Private methods
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue