|
@@ -58,7 +58,6 @@ const NSInteger BLUR_STATUS_TAG = 78264801;
|
58
|
58
|
|
59
|
59
|
- (void)setDrawBehindTopBar:(BOOL)drawBehind {
|
60
|
60
|
if (drawBehind) {
|
61
|
|
- [self setExtendedLayoutIncludesOpaqueBars:YES];
|
62
|
61
|
self.edgesForExtendedLayout |= UIRectEdgeTop;
|
63
|
62
|
} else {
|
64
|
63
|
self.edgesForExtendedLayout &= ~UIRectEdgeTop;
|
|
@@ -67,7 +66,6 @@ const NSInteger BLUR_STATUS_TAG = 78264801;
|
67
|
66
|
|
68
|
67
|
- (void)setDrawBehindTabBar:(BOOL)drawBehindTabBar {
|
69
|
68
|
if (drawBehindTabBar) {
|
70
|
|
- [self setExtendedLayoutIncludesOpaqueBars:YES];
|
71
|
69
|
self.edgesForExtendedLayout |= UIRectEdgeBottom;
|
72
|
70
|
} else {
|
73
|
71
|
self.edgesForExtendedLayout &= ~UIRectEdgeBottom;
|