/**
|
* Tencent is pleased to support the open source community by making QMUI_iOS available.
|
* Copyright (C) 2016-2021 THL A29 Limited, a Tencent company. All rights reserved.
|
* Licensed under the MIT License (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
|
* http://opensource.org/licenses/MIT
|
* Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
|
*/
|
|
//
|
// QMUINavigationButton.m
|
// QMUIKit
|
//
|
// Created by QMUI Team on 2018/4/9.
|
//
|
|
#import "QMUINavigationButton.h"
|
#import "QMUICore.h"
|
#import "UIImage+QMUI.h"
|
#import "UIColor+QMUI.h"
|
#import "UIViewController+QMUI.h"
|
#import "QMUINavigationController.h"
|
#import "UIControl+QMUI.h"
|
#import "UIView+QMUI.h"
|
#import "NSString+QMUI.h"
|
#import "UINavigationController+QMUI.h"
|
#import "UINavigationItem+QMUI.h"
|
#import "UINavigationBar+QMUI.h"
|
#import "NSArray+QMUI.h"
|
|
typedef NS_ENUM(NSInteger, QMUINavigationButtonPosition) {
|
QMUINavigationButtonPositionNone = -1, // 不处于navigationBar最左(右)边的按钮,则使用None。用None则不会在alignmentRectInsets里调整位置
|
QMUINavigationButtonPositionLeft, // 用于leftBarButtonItem,如果用于leftBarButtonItems,则只对最左边的item使用,其他item使用QMUINavigationButtonPositionNone
|
QMUINavigationButtonPositionRight, // 用于rightBarButtonItem,如果用于rightBarButtonItems,则只对最右边的item使用,其他item使用QMUINavigationButtonPositionNone
|
};
|
|
@interface QMUINavigationButton()
|
|
@property(nonatomic, assign) QMUINavigationButtonPosition buttonPosition;
|
@property(nonatomic, strong) UIImage *defaultHighlightedImage;// 在 set normal image 时自动拿 normal image 加 alpha 作为 highlighted image
|
@property(nonatomic, strong) UIImage *defaultDisabledImage;// 在 set normal image 时自动拿 normal image 加 alpha 作为 disabled image
|
@end
|
|
|
@implementation QMUINavigationButton
|
|
- (instancetype)init {
|
return [self initWithType:QMUINavigationButtonTypeNormal];
|
}
|
|
- (instancetype)initWithType:(QMUINavigationButtonType)type {
|
return [self initWithType:type title:nil];
|
}
|
|
- (instancetype)initWithType:(QMUINavigationButtonType)type title:(NSString *)title {
|
if (self = [super initWithFrame:CGRectZero]) {
|
_type = type;
|
self.buttonPosition = QMUINavigationButtonPositionNone;
|
[self setTitle:title forState:UIControlStateNormal];
|
[self renderButtonStyle];
|
[self sizeToFit];
|
}
|
return self;
|
}
|
|
- (instancetype)initWithImage:(UIImage *)image {
|
if (self = [self initWithType:QMUINavigationButtonTypeImage]) {
|
[self setImage:image forState:UIControlStateNormal];
|
[self sizeToFit];
|
}
|
return self;
|
}
|
|
- (void)renderButtonStyle {
|
UIFont *font = NavBarButtonFont;
|
if (font) {
|
self.titleLabel.font = font;
|
}
|
self.titleLabel.backgroundColor = UIColorClear;
|
self.titleLabel.lineBreakMode = NSLineBreakByTruncatingTail;
|
self.contentMode = UIViewContentModeCenter;
|
self.contentHorizontalAlignment = UIControlContentHorizontalAlignmentCenter;
|
self.contentVerticalAlignment = UIControlContentVerticalAlignmentCenter;
|
self.qmui_automaticallyAdjustTouchHighlightedInScrollView = YES;
|
|
// UIBarButtonItem 默认都是跟随 tintColor 的,所以这里让图片也是用 alwaysTemplate 模式
|
self.adjustsImageTintColorAutomatically = YES;
|
|
if (self.type == QMUINavigationButtonTypeImage) {
|
// 让 iOS 11 及以后也能走到 alignmentRectInsets,iOS 10 及以前的系统就算不置为 NO 也可以走到 alignmentRectInsets,从而保证 image 类型的按钮的布局、间距与系统的保持一致
|
self.translatesAutoresizingMaskIntoConstraints = NO;
|
}
|
|
// 系统默认对 highlighted 和 disabled 的图片的表现是变身色,但 UIBarButtonItem 是 alpha,为了与 UIBarButtonItem 表现一致,这里禁用了 UIButton 默认的行为,然后通过重写 setImage:forState:,自动将 normal image 处理为对应的 highlighted image 和 disabled image
|
self.adjustsImageWhenHighlighted = NO;
|
self.adjustsImageWhenDisabled = NO;
|
|
switch (self.type) {
|
case QMUINavigationButtonTypeNormal:
|
break;
|
case QMUINavigationButtonTypeImage:
|
// 拓展宽度,以保证用 leftBarButtonItems/rightBarButtonItems 时,按钮与按钮之间间距与系统的保持一致
|
self.contentEdgeInsets = UIEdgeInsetsMake(0, 11, 0, 11);
|
break;
|
case QMUINavigationButtonTypeBold: {
|
font = NavBarButtonFontBold;
|
if (font) {
|
self.titleLabel.font = font;
|
}
|
}
|
break;
|
case QMUINavigationButtonTypeBack: {
|
self.qmui_outsideEdge = UIEdgeInsetsMake(-12, -12, -24, -24);
|
UIImage *backIndicatorImage = UINavigationBar.qmui_appearanceConfigured.backIndicatorImage;
|
if (!backIndicatorImage) {
|
// 配置表没有自定义的图片,则按照系统的返回按钮图片样式创建一张,颜色按照 tintColor 来
|
UIColor *tintColor = QMUICMIActivated ? NavBarTintColor : UIColor.qmui_systemTintColor;
|
backIndicatorImage = [UIImage qmui_imageWithShape:QMUIImageShapeNavBack size:CGSizeMake(13, 23) lineWidth:3 tintColor:tintColor];
|
}
|
[self setImage:backIndicatorImage forState:UIControlStateNormal];
|
[self setImage:[backIndicatorImage qmui_imageWithAlpha:NavBarHighlightedAlpha] forState:UIControlStateHighlighted];
|
[self setImage:[backIndicatorImage qmui_imageWithAlpha:NavBarDisabledAlpha] forState:UIControlStateDisabled];
|
|
self.contentHorizontalAlignment = UIControlContentHorizontalAlignmentLeft;
|
|
// @warning 这些数值都是每个iOS版本核对过没问题的,如果修改则要检查要每个版本里与系统UIBarButtonItem的布局是否一致
|
UIOffset titleOffsetBaseOnSystem = UIOffsetMake(6, 0);// 经过这些数值的调整后,自定义返回按钮的位置才能和系统默认返回按钮的位置对准,而配置表里设置的值是在这个调整的基础上再调整
|
UIOffset configurationOffset = NavBarBarBackButtonTitlePositionAdjustment;
|
self.titleEdgeInsets = UIEdgeInsetsMake(titleOffsetBaseOnSystem.vertical + configurationOffset.vertical, titleOffsetBaseOnSystem.horizontal + configurationOffset.horizontal, -titleOffsetBaseOnSystem.vertical - configurationOffset.vertical, -titleOffsetBaseOnSystem.horizontal - configurationOffset.horizontal);
|
self.contentEdgeInsets = UIEdgeInsetsMake(0,
|
0,
|
0,
|
self.titleEdgeInsets.left);
|
}
|
break;
|
|
default:
|
break;
|
}
|
}
|
|
- (void)setImage:(UIImage *)image forState:(UIControlState)state {
|
if (image && self.adjustsImageTintColorAutomatically) {
|
image = [image imageWithRenderingMode:UIImageRenderingModeAlwaysTemplate];
|
}
|
|
if (image && [self imageForState:state] != image) {
|
if (state == UIControlStateNormal) {
|
// 将 normal image 处理成对应的 highlighted image 和 disabled image
|
self.defaultHighlightedImage = [[image qmui_imageWithAlpha:NavBarHighlightedAlpha] imageWithRenderingMode:image.renderingMode];
|
[self setImage:self.defaultHighlightedImage forState:UIControlStateHighlighted];
|
|
self.defaultDisabledImage = [[image qmui_imageWithAlpha:NavBarDisabledAlpha] imageWithRenderingMode:image.renderingMode];
|
[self setImage:self.defaultDisabledImage forState:UIControlStateDisabled];
|
} else {
|
// 如果业务主动设置了非 normal 状态的 image,则把之前 QMUI 自动加上的两个 image 去掉,相当于认为业务希望完全控制这个按钮在所有 state 下的图片
|
if (image != self.defaultHighlightedImage && image != self.defaultDisabledImage) {
|
if ([self imageForState:UIControlStateHighlighted] == self.defaultHighlightedImage && state != UIControlStateHighlighted) {
|
[self setImage:nil forState:UIControlStateHighlighted];
|
}
|
if ([self imageForState:UIControlStateDisabled] == self.defaultDisabledImage && state != UIControlStateDisabled) {
|
[self setImage:nil forState:UIControlStateDisabled];
|
}
|
}
|
}
|
}
|
|
[super setImage:image forState:state];
|
}
|
|
- (void)setAdjustsImageTintColorAutomatically:(BOOL)adjustsImageTintColorAutomatically {
|
BOOL valueDifference = _adjustsImageTintColorAutomatically != adjustsImageTintColorAutomatically;
|
_adjustsImageTintColorAutomatically = adjustsImageTintColorAutomatically;
|
|
if (valueDifference) {
|
[self updateImageRenderingModeIfNeeded];
|
}
|
}
|
|
- (void)updateImageRenderingModeIfNeeded {
|
if (self.currentImage) {
|
NSArray<NSNumber *> *states = @[@(UIControlStateNormal), @(UIControlStateHighlighted), @(UIControlStateSelected), @(UIControlStateSelected|UIControlStateHighlighted), @(UIControlStateDisabled)];
|
|
for (NSNumber *number in states) {
|
UIImage *image = [self imageForState:number.unsignedIntegerValue];
|
if (!image) {
|
return;
|
}
|
|
if (self.adjustsImageTintColorAutomatically) {
|
// 这里的 setImage: 操作不需要使用 renderingMode 对 image 重新处理,而是放到重写的 setImage:forState 里去做就行了
|
[self setImage:image forState:[number unsignedIntegerValue]];
|
} else {
|
// 如果不需要用 template 的模式渲染,并且之前是使用 template 的,则把 renderingMode 改回 original
|
[self setImage:[image imageWithRenderingMode:UIImageRenderingModeAlwaysOriginal] forState:[number unsignedIntegerValue]];
|
}
|
}
|
}
|
}
|
|
// 自定义nav按钮,需要根据这个来修改title的三态颜色。
|
- (void)tintColorDidChange {
|
[super tintColorDidChange];
|
[self setTitleColor:self.tintColor forState:UIControlStateNormal];
|
[self setTitleColor:[self.tintColor colorWithAlphaComponent:NavBarHighlightedAlpha] forState:UIControlStateHighlighted];
|
[self setTitleColor:[self.tintColor colorWithAlphaComponent:NavBarDisabledAlpha] forState:UIControlStateDisabled];
|
}
|
|
// 对按钮内容添加偏移,让UIBarButtonItem适配最新设备的系统行为,统一位置。注意 iOS 11 及以后,只有 image 类型的才会走进来
|
- (UIEdgeInsets)alignmentRectInsets {
|
|
UIEdgeInsets insets = [super alignmentRectInsets];
|
|
if (self.type == QMUINavigationButtonTypeNormal || self.type == QMUINavigationButtonTypeBold) {
|
// 对于奇数大小的字号,不同 iOS 版本的偏移策略不同,统一一下
|
if (self.titleLabel.font.pointSize / 2.0 > 0) {
|
insets.top = -PixelOne;
|
insets.bottom = PixelOne;
|
}
|
} else if (self.type == QMUINavigationButtonTypeImage) {
|
// 图片类型的按钮,分别对最左、最右那个按钮调整 inset(这里与 UINavigationItem(QMUINavigationButton) 里的 position 赋值配合使用)
|
if (self.buttonPosition == QMUINavigationButtonPositionLeft) {
|
insets.left = 11;
|
} else if (self.buttonPosition == QMUINavigationButtonPositionRight) {
|
insets.right = 11;
|
}
|
|
insets.top = 1;
|
} else if (self.type == QMUINavigationButtonTypeBack) {
|
insets.top = PixelOne;
|
}
|
|
return insets;
|
}
|
|
@end
|
|
@implementation UIBarButtonItem (QMUINavigationButton)
|
|
+ (instancetype)qmui_itemWithButton:(QMUINavigationButton *)button target:(nullable id)target action:(nullable SEL)action {
|
if (!button) return nil;
|
[button addTarget:target action:action forControlEvents:UIControlEventTouchUpInside];
|
return [[self alloc] initWithCustomView:button];
|
}
|
|
+ (instancetype)qmui_itemWithImage:(UIImage *)image target:(nullable id)target action:(nullable SEL)action {
|
if (!image) return nil;
|
return [[self alloc] initWithImage:image style:UIBarButtonItemStylePlain target:target action:action];
|
}
|
|
+ (instancetype)qmui_itemWithTitle:(NSString *)title target:(nullable id)target action:(nullable SEL)action {
|
if (!title) return nil;
|
return [[self alloc] initWithTitle:title style:UIBarButtonItemStylePlain target:target action:action];
|
}
|
|
+ (instancetype)qmui_itemWithBoldTitle:(NSString *)title target:(nullable id)target action:(nullable SEL)action {
|
if (!title) return nil;
|
return [[self alloc] initWithTitle:title style:UIBarButtonItemStyleDone target:target action:action];
|
}
|
|
+ (instancetype)qmui_backItemWithTitle:(nullable NSString *)title target:(nullable id)target action:(nullable SEL)action {
|
QMUINavigationButton *button = [[QMUINavigationButton alloc] initWithType:QMUINavigationButtonTypeBack title:title];
|
[button addTarget:target action:action forControlEvents:UIControlEventTouchUpInside];
|
UIBarButtonItem *barButtonItem = [[self alloc] initWithCustomView:button];
|
return barButtonItem;
|
}
|
|
+ (instancetype)qmui_backItemWithTarget:(nullable id)target action:(nullable SEL)action {
|
NSString *backTitle = nil;
|
if (NeedsBackBarButtonItemTitle) {
|
backTitle = @"返回"; // 默认文字用返回
|
if ([target isKindOfClass:[UIViewController class]]) {
|
UIViewController *viewController = (UIViewController *)target;
|
UIViewController *previousViewController = viewController.qmui_previousViewController;
|
if (previousViewController.navigationItem.backBarButtonItem) {
|
// 如果前一个界面有主动设置返回按钮的文字,则取这个文字
|
backTitle = previousViewController.navigationItem.backBarButtonItem.title;
|
} else if ([viewController respondsToSelector:@selector(qmui_backBarButtonItemTitleWithPreviousViewController:)]) {
|
// 否则看是否有通过 QMUI 提供的接口来设置返回按钮的文字,有就用它的值
|
backTitle = [((UIViewController<QMUINavigationControllerAppearanceDelegate> *)viewController) qmui_backBarButtonItemTitleWithPreviousViewController:previousViewController];
|
} else if (previousViewController.title) {
|
// 否则取上一个界面的标题
|
backTitle = previousViewController.title;
|
}
|
}
|
} else {
|
backTitle = @" ";
|
}
|
|
return [self qmui_backItemWithTitle:backTitle target:target action:action];
|
}
|
|
+ (instancetype)qmui_closeItemWithTarget:(nullable id)target action:(nullable SEL)action {
|
UIBarButtonItem *closeItem = [[self alloc] initWithImage:NavBarCloseButtonImage style:UIBarButtonItemStylePlain target:target action:action];
|
closeItem.accessibilityLabel = @"关闭";
|
return closeItem;
|
}
|
|
+ (instancetype)qmui_fixedSpaceItemWithWidth:(CGFloat)width {
|
UIBarButtonItem *item = [[self alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemFixedSpace target:nil action:NULL];
|
item.width = width;
|
return item;
|
}
|
|
+ (instancetype)qmui_flexibleSpaceItem {
|
return [[self alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemFlexibleSpace target:nil action:NULL];
|
}
|
|
@end
|
|
@interface UIBarButtonItem (QMUINavigationButton_Private)
|
|
/// 判断当前的 UIBarButtonItem 是否是 QMUINavigationButton
|
@property(nonatomic, assign, readonly) BOOL qmui_isCustomizedBarButtonItem;
|
|
/// 判断当前的 UIBarButtonItem 是否是用 QMUINavigationButton 自定义返回按钮生成的
|
@property(nonatomic, assign, readonly) BOOL qmui_isCustomizedBackBarButtonItem;
|
|
/// 获取内部的 QMUINavigationButton(如果有的话)
|
@property(nonatomic, strong, readonly) QMUINavigationButton *qmui_navigationButton;
|
@end
|
|
@interface UIViewController (QMUINavigationButton)
|
|
@end
|
|
@interface UINavigationBar (QMUINavigationButton)
|
|
/// 判断当前的 UINavigationBar 的返回按钮是不是自定义的
|
@property(nonatomic, readonly) BOOL qmui_customizingBackBarButtonItem;
|
@end
|
|
@implementation UIBarButtonItem (QMUINavigationButton_Private)
|
|
- (BOOL)qmui_isCustomizedBarButtonItem {
|
if (!self.customView) {
|
return NO;
|
}
|
return [self.customView isKindOfClass:[QMUINavigationButton class]];
|
}
|
|
- (BOOL)qmui_isCustomizedBackBarButtonItem {
|
return self.qmui_isCustomizedBarButtonItem && ((QMUINavigationButton *)self.customView).type == QMUINavigationButtonTypeBack;
|
}
|
|
- (QMUINavigationButton *)qmui_navigationButton {
|
if ([self.customView isKindOfClass:[QMUINavigationButton class]]) {
|
return (QMUINavigationButton *)self.customView;
|
}
|
return nil;
|
}
|
|
@end
|
|
@implementation UINavigationItem (QMUINavigationButton)
|
|
+ (void)load {
|
static dispatch_once_t onceToken;
|
dispatch_once(&onceToken, ^{
|
SEL selectors[] = {
|
@selector(setLeftBarButtonItem:animated:),
|
@selector(setLeftBarButtonItems:animated:),
|
@selector(setRightBarButtonItem:animated:),
|
@selector(setRightBarButtonItems:animated:),
|
};
|
for (NSUInteger index = 0; index < sizeof(selectors) / sizeof(SEL); index++) {
|
SEL originalSelector = selectors[index];
|
SEL swizzledSelector = NSSelectorFromString([@"qmui_" stringByAppendingString:NSStringFromSelector(originalSelector)]);
|
ExchangeImplementations([UINavigationItem class], originalSelector, swizzledSelector);
|
}
|
});
|
}
|
|
- (void)qmui_setLeftBarButtonItem:(UIBarButtonItem *)item animated:(BOOL)animated {
|
[self qmui_setLeftBarButtonItem:item animated:animated];
|
|
// 自动给 position 赋值
|
item.qmui_navigationButton.buttonPosition = QMUINavigationButtonPositionLeft;
|
}
|
|
- (void)qmui_setLeftBarButtonItems:(NSArray<UIBarButtonItem *> *)items animated:(BOOL)animated {
|
[self qmui_setLeftBarButtonItems:items animated:animated];
|
|
// 自动给 position 赋值
|
for (NSInteger i = 0; i < items.count; i++) {
|
if (i == 0) {
|
items[i].qmui_navigationButton.buttonPosition = QMUINavigationButtonPositionLeft;
|
} else {
|
items[i].qmui_navigationButton.buttonPosition = QMUINavigationButtonPositionNone;
|
}
|
}
|
}
|
|
- (void)qmui_setRightBarButtonItem:(UIBarButtonItem *)item animated:(BOOL)animated {
|
[self qmui_setRightBarButtonItem:item animated:animated];
|
|
// 自动给 position 赋值
|
item.qmui_navigationButton.buttonPosition = QMUINavigationButtonPositionRight;
|
}
|
|
- (void)qmui_setRightBarButtonItems:(NSArray<UIBarButtonItem *> *)items animated:(BOOL)animated {
|
[self qmui_setRightBarButtonItems:items animated:animated];
|
|
// 自动给 position 赋值
|
for (NSInteger i = 0; i < items.count; i++) {
|
if (i == 0) {
|
items[i].qmui_navigationButton.buttonPosition = QMUINavigationButtonPositionRight;
|
} else {
|
items[i].qmui_navigationButton.buttonPosition = QMUINavigationButtonPositionNone;
|
}
|
}
|
}
|
|
@end
|
|
@implementation UIViewController (QMUINavigationButton)
|
|
+ (void)load {
|
static dispatch_once_t onceToken;
|
dispatch_once(&onceToken, ^{
|
|
// 当使用自定义返回按钮时,无法使用 VoiceOver 或者 iOS 13.4 新增的 Full Keyboard Access 返回
|
OverrideImplementation([UIViewController class], @selector(accessibilityPerformEscape), ^id(__unsafe_unretained Class originClass, SEL originCMD, IMP (^originalIMPProvider)(void)) {
|
return ^BOOL(UIViewController *selfObject) {
|
|
if (selfObject.navigationItem.leftBarButtonItem.qmui_isCustomizedBackBarButtonItem
|
&& ((QMUINavigationButton *)selfObject.navigationItem.leftBarButtonItem.customView).enabled
|
&& selfObject.navigationController.qmui_rootViewController != selfObject
|
&& selfObject.navigationController.interactivePopGestureRecognizer.enabled
|
&& !UIApplication.sharedApplication.ignoringInteractionEvents) {
|
[selfObject.navigationController popViewControllerAnimated:YES];
|
return YES;
|
}
|
|
// call super
|
BOOL (*originSelectorIMP)(id, SEL);
|
originSelectorIMP = (BOOL (*)(id, SEL))originalIMPProvider();
|
BOOL result = originSelectorIMP(selfObject, originCMD);
|
return result;
|
};
|
});
|
});
|
}
|
|
@end
|
|
@implementation UINavigationBar (QMUINavigationButton)
|
|
+ (void)load {
|
static dispatch_once_t onceToken;
|
dispatch_once(&onceToken, ^{
|
|
// 强制修改 contentView 的 directionalLayoutMargins.leading,在使用自定义返回按钮时减小 8
|
// Xcode11 beta2 修改私有 view 的 directionalLayoutMargins 会 crash,换个方式
|
// -[_UINavigationBarContentView directionalLayoutMargins]
|
NSString *barContentViewString = [NSString qmui_stringByConcat:@"_", @"UINavigationBar", @"ContentView", nil];
|
|
OverrideImplementation(NSClassFromString(barContentViewString), @selector(directionalLayoutMargins), ^id(__unsafe_unretained Class originClass, SEL originCMD, IMP (^originalIMPProvider)(void)) {
|
return ^NSDirectionalEdgeInsets(UIView *selfObject) {
|
|
// call super
|
NSDirectionalEdgeInsets (*originSelectorIMP)(id, SEL);
|
originSelectorIMP = (NSDirectionalEdgeInsets (*)(id, SEL))originalIMPProvider();
|
NSDirectionalEdgeInsets originResult = originSelectorIMP(selfObject, originCMD);
|
|
// get navbar
|
UINavigationBar *navBar = nil;
|
if ([NSStringFromClass([selfObject class]) isEqualToString:barContentViewString] &&
|
[selfObject.superview isKindOfClass:[UINavigationBar class]]) {
|
navBar = (UINavigationBar *)selfObject.superview;
|
}
|
|
// change insets
|
if (navBar) {
|
NSDirectionalEdgeInsets value = originResult;
|
value.leading -= (navBar.qmui_customizingBackBarButtonItem ? 8 : 0);
|
return value;
|
}
|
|
return originResult;
|
};
|
});
|
|
// 系统的 UIBarButtonItem 响应区域比较大,如果用 customView 则响应区域只有 customView.frame 的大小,这里专门扩大它
|
// 对没用 customView 的不处理
|
OverrideImplementation([UINavigationBar class], @selector(hitTest:withEvent:), ^id(__unsafe_unretained Class originClass, SEL originCMD, IMP (^originalIMPProvider)(void)) {
|
return ^UIView *(UINavigationBar *selfObject, CGPoint firstArgv, UIEvent *secondArgv) {
|
|
// call super
|
UIView * (*originSelectorIMP)(id, SEL, CGPoint, UIEvent *);
|
originSelectorIMP = (UIView * (*)(id, SEL, CGPoint, UIEvent *))originalIMPProvider();
|
UIView * result = originSelectorIMP(selfObject, originCMD, firstArgv, secondArgv);
|
|
BOOL hitNothing = !result || result == selfObject.qmui_contentView || [NSStringFromClass(result.class) containsString:@"StackView"];
|
if (!hitNothing) return result;
|
|
NSMutableArray<UIView *> *customViews = [[NSMutableArray alloc] init];
|
if (selfObject.topItem.titleView) {
|
[customViews addObject:selfObject.topItem.titleView];
|
}
|
[customViews addObjectsFromArray:[selfObject.topItem.leftBarButtonItems qmui_compactMapWithBlock:^id _Nullable(UIBarButtonItem * _Nonnull item) {
|
return item.customView ?: nil;
|
}]];
|
[customViews addObjectsFromArray:[selfObject.topItem.rightBarButtonItems qmui_compactMapWithBlock:^id _Nullable(UIBarButtonItem * _Nonnull item) {
|
return item.customView ?: nil;
|
}]];
|
UIView *hitTestingView = [customViews qmui_firstMatchWithBlock:^BOOL(UIView * _Nonnull item) {
|
if (!CGRectIsEmpty(item.frame) && !item.hidden && item.alpha > 0.01 && item.window) {
|
if ([item isKindOfClass:UIControl.class] && !((UIControl *)item).enabled) {
|
return NO;
|
}
|
CGRect rect = [selfObject convertRect:item.bounds fromView:item];
|
rect = CGRectInsetEdges(rect, item.qmui_outsideEdge);
|
if (CGRectContainsPoint(rect, firstArgv)) {
|
return YES;
|
}
|
}
|
return NO;
|
}];
|
if (hitTestingView) {
|
return hitTestingView;
|
}
|
return result;
|
};
|
});
|
});
|
}
|
|
- (BOOL)qmui_customizingBackBarButtonItem {
|
if (self.topItem.leftBarButtonItem) {
|
return self.topItem.leftBarButtonItem.qmui_isCustomizedBackBarButtonItem;
|
}
|
return NO;
|
}
|
|
@end
|