44 lines
1.0 KiB
Objective-C
44 lines
1.0 KiB
Objective-C
/**
|
|
* Copyright Maarten Billemont (http://www.lhunath.com, lhunath@lyndir.com)
|
|
*
|
|
* See the enclosed file LICENSE for license information (LGPLv3). If you did
|
|
* not receive this file, see http://www.gnu.org/licenses/lgpl-3.0.txt
|
|
*
|
|
* @author Maarten Billemont <lhunath@lyndir.com>
|
|
* @license http://www.gnu.org/licenses/lgpl-3.0.txt
|
|
*/
|
|
|
|
//
|
|
// PearlUINavigationBar.h
|
|
// PearlUINavigationBar
|
|
//
|
|
// Created by lhunath on 2014-03-17.
|
|
// Copyright, lhunath (Maarten Billemont) 2014. All rights reserved.
|
|
//
|
|
|
|
#import "PearlUINavigationBar.h"
|
|
|
|
@implementation PearlUINavigationBar
|
|
|
|
- (UIView *)hitTest:(CGPoint)point withEvent:(UIEvent *)event {
|
|
|
|
UIView *hitView = [super hitTest:point withEvent:event];
|
|
if (self.ignoreTouches && hitView == self)
|
|
return nil;
|
|
|
|
return hitView;
|
|
}
|
|
|
|
- (void)setInvisible:(BOOL)invisible {
|
|
|
|
_invisible = invisible;
|
|
|
|
if (invisible) {
|
|
self.translucent = YES;
|
|
self.shadowImage = [UIImage new];
|
|
[self setBackgroundImage:[UIImage new] forBarMetrics:UIBarMetricsDefault];
|
|
}
|
|
}
|
|
|
|
@end
|