/**
|
* 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.
|
*/
|
|
//
|
// UIViewController+QMUI.m
|
// qmui
|
//
|
// Created by QMUI Team on 16/1/12.
|
//
|
|
#import "UIViewController+QMUI.h"
|
#import "UINavigationController+QMUI.h"
|
#import "QMUICore.h"
|
#import "UIInterface+QMUI.h"
|
#import "NSObject+QMUI.h"
|
#import "QMUILog.h"
|
#import "UIView+QMUI.h"
|
|
NSNotificationName const QMUIAppSizeWillChangeNotification = @"QMUIAppSizeWillChangeNotification";
|
NSString *const QMUIPrecedingAppSizeUserInfoKey = @"QMUIPrecedingAppSizeUserInfoKey";
|
NSString *const QMUIFollowingAppSizeUserInfoKey = @"QMUIFollowingAppSizeUserInfoKey";
|
|
@implementation UIViewController (QMUI)
|
|
QMUISynthesizeIdCopyProperty(qmui_visibleStateDidChangeBlock, setQmui_visibleStateDidChangeBlock)
|
QMUISynthesizeIdCopyProperty(qmui_prefersStatusBarHiddenBlock, setQmui_prefersStatusBarHiddenBlock)
|
QMUISynthesizeIdCopyProperty(qmui_preferredStatusBarStyleBlock, setQmui_preferredStatusBarStyleBlock)
|
QMUISynthesizeIdCopyProperty(qmui_preferredStatusBarUpdateAnimationBlock, setQmui_preferredStatusBarUpdateAnimationBlock)
|
QMUISynthesizeIdCopyProperty(qmui_prefersHomeIndicatorAutoHiddenBlock, setQmui_prefersHomeIndicatorAutoHiddenBlock)
|
|
+ (void)load {
|
static dispatch_once_t onceToken;
|
dispatch_once(&onceToken, ^{
|
|
ExchangeImplementations([UIViewController class], @selector(description), @selector(qmuivc_description));
|
|
ExtendImplementationOfVoidMethodWithoutArguments([UIViewController class], @selector(viewDidLoad), ^(UIViewController *selfObject) {
|
selfObject.qmui_visibleState = QMUIViewControllerViewDidLoad;
|
});
|
|
ExtendImplementationOfVoidMethodWithSingleArgument([UIViewController class], @selector(viewWillAppear:), BOOL, ^(UIViewController *selfObject, BOOL animated) {
|
selfObject.qmui_visibleState = QMUIViewControllerWillAppear;
|
});
|
|
ExtendImplementationOfVoidMethodWithSingleArgument([UIViewController class], @selector(viewDidAppear:), BOOL, ^(UIViewController *selfObject, BOOL animated) {
|
selfObject.qmui_visibleState = QMUIViewControllerDidAppear;
|
});
|
|
ExtendImplementationOfVoidMethodWithSingleArgument([UIViewController class], @selector(viewWillDisappear:), BOOL, ^(UIViewController *selfObject, BOOL animated) {
|
selfObject.qmui_visibleState = QMUIViewControllerWillDisappear;
|
});
|
|
ExtendImplementationOfVoidMethodWithSingleArgument([UIViewController class], @selector(viewDidDisappear:), BOOL, ^(UIViewController *selfObject, BOOL animated) {
|
selfObject.qmui_visibleState = QMUIViewControllerDidDisappear;
|
});
|
|
OverrideImplementation([UIViewController class], @selector(viewWillTransitionToSize:withTransitionCoordinator:), ^id(__unsafe_unretained Class originClass, SEL originCMD, IMP (^originalIMPProvider)(void)) {
|
return ^(UIViewController *selfObject, CGSize size, id<UIViewControllerTransitionCoordinator> coordinator) {
|
|
if (selfObject == UIApplication.sharedApplication.delegate.window.rootViewController) {
|
CGSize originalSize = selfObject.view.frame.size;
|
BOOL sizeChanged = !CGSizeEqualToSize(originalSize, size);
|
if (sizeChanged) {
|
[[NSNotificationCenter defaultCenter] postNotificationName:QMUIAppSizeWillChangeNotification object:nil userInfo:@{QMUIPrecedingAppSizeUserInfoKey: @(originalSize), QMUIFollowingAppSizeUserInfoKey: @(size)}];
|
}
|
}
|
|
// call super
|
void (*originSelectorIMP)(id, SEL, CGSize, id<UIViewControllerTransitionCoordinator>);
|
originSelectorIMP = (void (*)(id, SEL, CGSize, id<UIViewControllerTransitionCoordinator>))originalIMPProvider();
|
originSelectorIMP(selfObject, originCMD, size, coordinator);
|
};
|
});
|
|
// 修复 iOS 11 及以后,UIScrollView 无法自动适配不透明的 tabBar,导致底部 inset 错误的问题
|
// https://github.com/Tencent/QMUI_iOS/issues/218
|
if (!QMUICMIActivated || ShouldFixTabBarSafeAreaInsetsBug) {
|
// -[UIViewController _setContentOverlayInsets:andLeftMargin:rightMargin:]
|
OverrideImplementation([UIViewController class], NSSelectorFromString([NSString stringWithFormat:@"_%@:%@:%@:",@"setContentOverlayInsets", @"andLeftMargin", @"rightMargin"]), ^id(__unsafe_unretained Class originClass, SEL originCMD, IMP (^originalIMPProvider)(void)) {
|
return ^(UIViewController *selfObject, UIEdgeInsets insets, CGFloat leftMargin, CGFloat rightMargin) {
|
|
UITabBarController *tabBarController = selfObject.tabBarController;
|
UITabBar *tabBar = tabBarController.tabBar;
|
if (tabBarController
|
&& tabBar
|
&& selfObject.navigationController.parentViewController == tabBarController
|
&& selfObject.parentViewController == selfObject.navigationController // 过滤掉那些自己添加的 childViewController 的情况
|
&& !tabBar.hidden
|
&& !selfObject.hidesBottomBarWhenPushed
|
&& selfObject.isViewLoaded) {
|
CGRect viewRectInTabBarController = [selfObject.view convertRect:selfObject.view.bounds toView:tabBarController.view];
|
|
// 发现在 iOS 13.3 及以下,在 extendedLayoutIncludesOpaqueBars = YES 的情况下,理论上任何时候 vc.view 都应该撑满整个 tabBarController.view,但从没带 tabBar 的界面 pop 到带 tabBar 的界面过程中,navController.view.height 会被改得小一点,导致 safeAreaInsets.bottom 出现错误的中间值,引发 UIScrollView.contentInset 的错误变化,后续就算 contentInset 恢复正确,contentOffset 也无法恢复,所以这里直接过滤掉中间的错误值
|
// (但无法保证每个场景下这样的值都是错的,或许某些少见的场景里,navController.view.height 就是不会铺满整个 tabBarController.view.height 呢?)
|
// https://github.com/Tencent/QMUI_iOS/issues/934
|
if (@available(iOS 13.4, *)) {
|
} else {
|
if ((
|
(!tabBar.translucent && selfObject.extendedLayoutIncludesOpaqueBars)
|
|| tabBar.translucent
|
)
|
&& selfObject.edgesForExtendedLayout & UIRectEdgeBottom
|
&& !CGFloatEqualToFloat(CGRectGetHeight(viewRectInTabBarController), CGRectGetHeight(tabBarController.view.bounds))) {
|
return;
|
}
|
}
|
|
// pop 转场动画过程中有些时候 tabBar 尚未被加到 view 层级树里,所以这里做个判断,避免出现 convertRect 警告
|
CGRect barRectInTabBarController = tabBar.window ? [tabBar convertRect:tabBar.bounds toView:tabBarController.view] : tabBar.frame;
|
CGFloat correctInsetBottom = MAX(CGRectGetMaxY(viewRectInTabBarController) - CGRectGetMinY(barRectInTabBarController), 0);
|
insets.bottom = correctInsetBottom;
|
}
|
|
// call super
|
void (*originSelectorIMP)(id, SEL, UIEdgeInsets, CGFloat, CGFloat);
|
originSelectorIMP = (void (*)(id, SEL, UIEdgeInsets, CGFloat, CGFloat))originalIMPProvider();
|
originSelectorIMP(selfObject, originCMD, insets, leftMargin, rightMargin);
|
};
|
});
|
}
|
|
// iOS 11 及以后不 override prefersStatusBarHidden 而是通过私有方法来实现,是因为系统会先通过 +[UIViewController doesOverrideViewControllerMethod:inBaseClass:] 方法来判断当前的 UIViewController 有没有重写 prefersStatusBarHidden 方法,有的话才会去调用 prefersStatusBarHidden,而如果我们用 swizzle 的方式去重写 prefersStatusBarHidden,系统依然会认为你没有重写该方法,于是不会调用,于是 block 无效。对于 iOS 10 及以前的系统没有这种逻辑,所以没问题。
|
// 特别的,只有 hidden 操作有这种逻辑,而 style、animation 等操作不管在哪个 iOS 版本里都是没有这种逻辑的
|
OverrideImplementation([UIViewController class], NSSelectorFromString(@"_preferredStatusBarVisibility"), ^id(__unsafe_unretained Class originClass, SEL originCMD, IMP (^originalIMPProvider)(void)) {
|
return ^NSInteger(UIViewController *selfObject) {
|
// 为了保证重写 prefersStatusBarHidden 的优先级比 block 高,这里要判断一下 qmui_hasOverrideUIKitMethod 的值
|
if (![selfObject qmui_hasOverrideUIKitMethod:@selector(prefersStatusBarHidden)] && selfObject.qmui_prefersStatusBarHiddenBlock) {
|
return selfObject.qmui_prefersStatusBarHiddenBlock() ? 1 : 2;// 系统返回的 1 表示隐藏,2 表示显示,0 不清楚含义
|
}
|
|
// call super
|
NSInteger (*originSelectorIMP)(id, SEL);
|
originSelectorIMP = (NSInteger (*)(id, SEL))originalIMPProvider();
|
NSInteger result = originSelectorIMP(selfObject, originCMD);
|
return result;
|
};
|
});
|
|
OverrideImplementation([UIViewController class], @selector(preferredStatusBarStyle), ^id(__unsafe_unretained Class originClass, SEL originCMD, IMP (^originalIMPProvider)(void)) {
|
return ^UIStatusBarStyle(UIViewController *selfObject) {
|
if (selfObject.qmui_preferredStatusBarStyleBlock) {
|
return selfObject.qmui_preferredStatusBarStyleBlock();
|
}
|
|
// call super
|
UIStatusBarStyle (*originSelectorIMP)(id, SEL);
|
originSelectorIMP = (UIStatusBarStyle (*)(id, SEL))originalIMPProvider();
|
UIStatusBarStyle result = originSelectorIMP(selfObject, originCMD);
|
return result;
|
};
|
});
|
|
OverrideImplementation([UIViewController class], @selector(preferredStatusBarUpdateAnimation), ^id(__unsafe_unretained Class originClass, SEL originCMD, IMP (^originalIMPProvider)(void)) {
|
return ^UIStatusBarAnimation(UIViewController *selfObject) {
|
if (selfObject.qmui_preferredStatusBarUpdateAnimationBlock) {
|
return selfObject.qmui_preferredStatusBarUpdateAnimationBlock();
|
}
|
|
// call super
|
UIStatusBarAnimation (*originSelectorIMP)(id, SEL);
|
originSelectorIMP = (UIStatusBarAnimation (*)(id, SEL))originalIMPProvider();
|
UIStatusBarAnimation result = originSelectorIMP(selfObject, originCMD);
|
return result;
|
};
|
});
|
|
OverrideImplementation([UIViewController class], @selector(prefersHomeIndicatorAutoHidden), ^id(__unsafe_unretained Class originClass, SEL originCMD, IMP (^originalIMPProvider)(void)) {
|
return ^BOOL(UIViewController *selfObject) {
|
if (selfObject.qmui_prefersHomeIndicatorAutoHiddenBlock) {
|
return selfObject.qmui_prefersHomeIndicatorAutoHiddenBlock();
|
}
|
|
// call super
|
BOOL (*originSelectorIMP)(id, SEL);
|
originSelectorIMP = (BOOL (*)(id, SEL))originalIMPProvider();
|
BOOL result = originSelectorIMP(selfObject, originCMD);
|
return result;
|
};
|
});
|
});
|
}
|
|
- (NSString *)qmuivc_description {
|
if (![NSThread isMainThread]) {
|
return [self qmuivc_description];
|
}
|
|
NSString *result = [NSString stringWithFormat:@"%@; superclass: %@; title: %@; view: %@", [self qmuivc_description], NSStringFromClass(self.superclass), self.title, [self isViewLoaded] ? self.view : nil];
|
|
if ([self isKindOfClass:[UINavigationController class]]) {
|
|
UINavigationController *navController = (UINavigationController *)self;
|
NSString *navDescription = [NSString stringWithFormat:@"; viewControllers(%@): %@; topViewController: %@; visibleViewController: %@", @(navController.viewControllers.count), [self descriptionWithViewControllers:navController.viewControllers], [navController.topViewController qmuivc_description], [navController.visibleViewController qmuivc_description]];
|
result = [result stringByAppendingString:navDescription];
|
|
} else if ([self isKindOfClass:[UITabBarController class]]) {
|
|
UITabBarController *tabBarController = (UITabBarController *)self;
|
NSString *tabBarDescription = [NSString stringWithFormat:@"; viewControllers(%@): %@; selectedViewController(%@): %@", @(tabBarController.viewControllers.count), [self descriptionWithViewControllers:tabBarController.viewControllers], @(tabBarController.selectedIndex), [tabBarController.selectedViewController qmuivc_description]];
|
result = [result stringByAppendingString:tabBarDescription];
|
|
}
|
return result;
|
}
|
|
- (NSString *)descriptionWithViewControllers:(NSArray<UIViewController *> *)viewControllers {
|
NSMutableString *string = [[NSMutableString alloc] init];
|
[string appendString:@"( "];
|
for (NSInteger i = 0, l = viewControllers.count; i < l; i++) {
|
[string appendFormat:@"[%@]%@%@", @(i), [viewControllers[i] qmuivc_description], i < l - 1 ? @"," : @""];
|
}
|
[string appendString:@" )"];
|
return [string copy];
|
}
|
|
+ (BOOL)qmui_isSystemContainerViewController {
|
for (Class clz in @[UINavigationController.class, UITabBarController.class, UISplitViewController.class]) {
|
if ([self isSubclassOfClass:clz]) {
|
return YES;
|
}
|
}
|
return NO;
|
}
|
|
- (BOOL)qmui_isSystemContainerViewController {
|
return self.class.qmui_isSystemContainerViewController;
|
}
|
|
static char kAssociatedObjectKey_visibleState;
|
- (void)setQmui_visibleState:(QMUIViewControllerVisibleState)qmui_visibleState {
|
BOOL valueChanged = self.qmui_visibleState != qmui_visibleState;
|
objc_setAssociatedObject(self, &kAssociatedObjectKey_visibleState, @(qmui_visibleState), OBJC_ASSOCIATION_RETAIN_NONATOMIC);
|
if (valueChanged && self.qmui_visibleStateDidChangeBlock) {
|
self.qmui_visibleStateDidChangeBlock(self, qmui_visibleState);
|
}
|
}
|
|
- (QMUIViewControllerVisibleState)qmui_visibleState {
|
return [((NSNumber *)objc_getAssociatedObject(self, &kAssociatedObjectKey_visibleState)) unsignedIntegerValue];
|
}
|
|
- (UIViewController *)qmui_previousViewController {
|
NSArray<UIViewController *> *viewControllers = self.navigationController.viewControllers;
|
NSUInteger index = [viewControllers indexOfObject:self];
|
if (index != NSNotFound && index > 0) {
|
return viewControllers[index - 1];
|
}
|
return nil;
|
}
|
|
- (NSString *)qmui_previousViewControllerTitle {
|
UIViewController *previousViewController = [self qmui_previousViewController];
|
if (previousViewController) {
|
return previousViewController.title ?: previousViewController.navigationItem.title;
|
}
|
return nil;
|
}
|
|
- (BOOL)qmui_isPresented {
|
UIViewController *viewController = self;
|
if (self.navigationController) {
|
if (self.navigationController.qmui_rootViewController != self) {
|
return NO;
|
}
|
viewController = self.navigationController;
|
}
|
BOOL result = viewController.presentingViewController.presentedViewController == viewController;
|
return result;
|
}
|
|
- (UIViewController *)qmui_visibleViewControllerIfExist {
|
|
if (self.presentedViewController) {
|
return [self.presentedViewController qmui_visibleViewControllerIfExist];
|
}
|
|
if ([self isKindOfClass:[UINavigationController class]]) {
|
return [((UINavigationController *)self).visibleViewController qmui_visibleViewControllerIfExist];
|
}
|
|
if ([self isKindOfClass:[UITabBarController class]]) {
|
return [((UITabBarController *)self).selectedViewController qmui_visibleViewControllerIfExist];
|
}
|
|
if ([self qmui_isViewLoadedAndVisible]) {
|
return self;
|
} else {
|
QMUILog(@"UIViewController (QMUI)", @"qmui_visibleViewControllerIfExist:,找不到可见的viewController。self = %@, self.view.window = %@", self, [self isViewLoaded] ? self.view.window : nil);
|
return nil;
|
}
|
}
|
|
- (BOOL)qmui_isViewLoadedAndVisible {
|
return self.isViewLoaded && self.view.qmui_visible;
|
}
|
|
- (CGFloat)qmui_navigationBarMaxYInViewCoordinator {
|
if (!self.isViewLoaded) {
|
return 0;
|
}
|
|
// 手势返回过程中 self.navigationController 已经不存在了,所以暂时通过遍历 view 层级的方式去获取到 navigationController 的引用
|
UINavigationController *navigationController = self.navigationController;
|
if (!navigationController) {
|
navigationController = self.view.superview.superview.qmui_viewController;
|
if (![navigationController isKindOfClass:[UINavigationController class]]) {
|
navigationController = nil;
|
}
|
}
|
|
if (!navigationController) {
|
return 0;
|
}
|
|
UINavigationBar *navigationBar = navigationController.navigationBar;
|
CGFloat barMinX = CGRectGetMinX(navigationBar.frame);
|
CGFloat barPresentationMinX = CGRectGetMinX(navigationBar.layer.presentationLayer.frame);
|
CGFloat superviewX = CGRectGetMinX(self.view.superview.frame);
|
CGFloat superviewX2 = CGRectGetMinX(self.view.superview.superview.frame);
|
|
if (self.qmui_navigationControllerPoppingInteracted) {
|
if (barMinX != 0 && barMinX == barPresentationMinX) {
|
// 返回到无 bar 的界面
|
return 0;
|
} else if (barMinX > 0) {
|
if (self.qmui_willAppearByInteractivePopGestureRecognizer) {
|
// 要手势返回去的那个界面隐藏了 bar
|
return 0;
|
}
|
} else if (barMinX < 0) {
|
// 正在手势返回的这个界面隐藏了 bar
|
if (!self.qmui_willAppearByInteractivePopGestureRecognizer) {
|
return 0;
|
}
|
} else {
|
// 正在手势返回的这个界面隐藏了 bar
|
if (barPresentationMinX != 0 && !self.qmui_willAppearByInteractivePopGestureRecognizer) {
|
return 0;
|
}
|
}
|
} else {
|
if (barMinX > 0) {
|
// 正在 pop 回无 bar 的界面
|
if (superviewX2 <= 0) {
|
// 即将回到的那个无 bar 的界面
|
return 0;
|
}
|
} else if (barMinX < 0) {
|
if (barPresentationMinX < 0) {
|
// 从无 bar push 进无 bar 的界面
|
return 0;
|
}
|
// 正在从有 bar 的界面 push 到无 bar 的界面(bar 被推到左边屏幕外,所以是负数)
|
if (superviewX >= 0) {
|
// 即将进入的那个无 bar 的界面
|
return 0;
|
}
|
} else {
|
if (superviewX < 0 && barPresentationMinX != 0) {
|
// 无 bar push 进有 bar 的界面时,背后的那个无 bar 的界面
|
return 0;
|
}
|
if (superviewX2 > 0 && barPresentationMinX < 0) {
|
// 无 bar pop 回有 bar 的界面时,被 pop 掉的那个无 bar 的界面
|
return 0;
|
}
|
}
|
}
|
|
CGRect navigationBarFrameInView = [self.view convertRect:navigationBar.frame fromView:navigationBar.superview];
|
CGRect navigationBarFrame = CGRectIntersection(self.view.bounds, navigationBarFrameInView);
|
|
// 两个 rect 如果不存在交集,CGRectIntersection 计算结果可能为非法的 rect,所以这里做个保护
|
if (!CGRectIsValidated(navigationBarFrame)) {
|
return 0;
|
}
|
|
CGFloat result = CGRectGetMaxY(navigationBarFrame);
|
return result;
|
}
|
|
- (CGFloat)qmui_toolbarSpacingInViewCoordinator {
|
if (!self.isViewLoaded) {
|
return 0;
|
}
|
if (!self.navigationController.toolbar || self.navigationController.toolbarHidden) {
|
return 0;
|
}
|
CGRect toolbarFrame = CGRectIntersection(self.view.bounds, [self.view convertRect:self.navigationController.toolbar.frame fromView:self.navigationController.toolbar.superview]);
|
|
// 两个 rect 如果不存在交集,CGRectIntersection 计算结果可能为非法的 rect,所以这里做个保护
|
if (!CGRectIsValidated(toolbarFrame)) {
|
return 0;
|
}
|
|
CGFloat result = CGRectGetHeight(self.view.bounds) - CGRectGetMinY(toolbarFrame);
|
return result;
|
}
|
|
- (CGFloat)qmui_tabBarSpacingInViewCoordinator {
|
if (!self.isViewLoaded) {
|
return 0;
|
}
|
if (!self.tabBarController.tabBar || self.tabBarController.tabBar.hidden) {
|
return 0;
|
}
|
if (self.hidesBottomBarWhenPushed && self.navigationController.qmui_rootViewController != self) {
|
return 0;
|
}
|
|
CGRect tabBarFrame = CGRectIntersection(self.view.bounds, [self.view convertRect:self.tabBarController.tabBar.frame fromView:self.tabBarController.tabBar.superview]);
|
|
// 两个 rect 如果不存在交集,CGRectIntersection 计算结果可能为非法的 rect,所以这里做个保护
|
if (!CGRectIsValidated(tabBarFrame)) {
|
return 0;
|
}
|
|
CGFloat result = CGRectGetHeight(self.view.bounds) - CGRectGetMinY(tabBarFrame);
|
return result;
|
}
|
|
- (BOOL)qmui_prefersStatusBarHidden {
|
if (self.childViewControllerForStatusBarHidden) {
|
return self.childViewControllerForStatusBarHidden.qmui_prefersStatusBarHidden;
|
}
|
return self.prefersStatusBarHidden;
|
}
|
|
- (UIStatusBarStyle)qmui_preferredStatusBarStyle {
|
if (self.childViewControllerForStatusBarStyle) {
|
return self.childViewControllerForStatusBarStyle.qmui_preferredStatusBarStyle;
|
}
|
return self.preferredStatusBarStyle;
|
}
|
|
- (BOOL)qmui_prefersLargeTitleDisplayed {
|
QMUIAssert(self.navigationController, @"UIViewController (QMUI)", @"%s 必现在 navigationController 栈内才能正确判断", __func__);
|
UINavigationBar *navigationBar = self.navigationController.navigationBar;
|
if (!navigationBar.prefersLargeTitles) {
|
return NO;
|
}
|
if (self.navigationItem.largeTitleDisplayMode == UINavigationItemLargeTitleDisplayModeAlways) {
|
return YES;
|
} else if (self.navigationItem.largeTitleDisplayMode == UINavigationItemLargeTitleDisplayModeNever) {
|
return NO;
|
} else if (self.navigationItem.largeTitleDisplayMode == UINavigationItemLargeTitleDisplayModeAutomatic) {
|
if (self.navigationController.viewControllers.firstObject == self) {
|
return YES;
|
} else {
|
UIViewController *previousViewController = self.navigationController.viewControllers[[self.navigationController.viewControllers indexOfObject:self] - 1];
|
return previousViewController.qmui_prefersLargeTitleDisplayed == YES;
|
}
|
}
|
return NO;
|
}
|
|
- (BOOL)qmui_isDescendantOfViewController:(UIViewController *)viewController {
|
UIViewController *parentViewController = self;
|
while (parentViewController) {
|
if (parentViewController == viewController) {
|
return YES;
|
}
|
parentViewController = parentViewController.parentViewController;
|
}
|
return NO;
|
}
|
|
@end
|
|
@implementation UIViewController (Data)
|
|
QMUISynthesizeIdCopyProperty(qmui_didAppearAndLoadDataBlock, setQmui_didAppearAndLoadDataBlock)
|
|
+ (void)load {
|
static dispatch_once_t onceToken;
|
dispatch_once(&onceToken, ^{
|
OverrideImplementation([UIViewController class], @selector(viewDidAppear:), ^id(__unsafe_unretained Class originClass, SEL originCMD, IMP (^originalIMPProvider)(void)) {
|
return ^(UIViewController *selfObject, BOOL animated) {
|
|
// call super
|
void (*originSelectorIMP)(id, SEL, BOOL);
|
originSelectorIMP = (void (*)(id, SEL, BOOL))originalIMPProvider();
|
originSelectorIMP(selfObject, originCMD, animated);
|
|
if (selfObject.qmui_didAppearAndLoadDataBlock && selfObject.qmui_dataLoaded) {
|
selfObject.qmui_didAppearAndLoadDataBlock();
|
selfObject.qmui_didAppearAndLoadDataBlock = nil;
|
}
|
};
|
});
|
});
|
}
|
|
static char kAssociatedObjectKey_dataLoaded;
|
- (void)setQmui_dataLoaded:(BOOL)qmui_dataLoaded {
|
objc_setAssociatedObject(self, &kAssociatedObjectKey_dataLoaded, @(qmui_dataLoaded), OBJC_ASSOCIATION_RETAIN_NONATOMIC);
|
if (self.qmui_didAppearAndLoadDataBlock && qmui_dataLoaded && self.qmui_visibleState >= QMUIViewControllerDidAppear) {
|
self.qmui_didAppearAndLoadDataBlock();
|
self.qmui_didAppearAndLoadDataBlock = nil;
|
}
|
}
|
|
- (BOOL)isQmui_dataLoaded {
|
return [((NSNumber *)objc_getAssociatedObject(self, &kAssociatedObjectKey_dataLoaded)) boolValue];
|
}
|
|
@end
|
|
@implementation UIViewController (Runtime)
|
|
- (BOOL)qmui_hasOverrideUIKitMethod:(SEL)selector {
|
// 排序依照 Xcode Interface Builder 里的控件排序,但保证子类在父类前面
|
NSMutableArray<Class> *viewControllerSuperclasses = [[NSMutableArray alloc] initWithObjects:
|
[UIImagePickerController class],
|
[UINavigationController class],
|
[UITableViewController class],
|
[UICollectionViewController class],
|
[UITabBarController class],
|
[UISplitViewController class],
|
[UIPageViewController class],
|
[UIViewController class],
|
nil];
|
|
if (NSClassFromString(@"UIAlertController")) {
|
[viewControllerSuperclasses addObject:[UIAlertController class]];
|
}
|
if (NSClassFromString(@"UISearchController")) {
|
[viewControllerSuperclasses addObject:[UISearchController class]];
|
}
|
for (NSInteger i = 0, l = viewControllerSuperclasses.count; i < l; i++) {
|
Class superclass = viewControllerSuperclasses[i];
|
if ([self qmui_hasOverrideMethod:selector ofSuperclass:superclass]) {
|
return YES;
|
}
|
}
|
return NO;
|
}
|
|
@end
|
|
@implementation UIViewController (QMUINavigationController)
|
|
QMUISynthesizeBOOLProperty(qmui_navigationControllerPopGestureRecognizerChanging, setQmui_navigationControllerPopGestureRecognizerChanging)
|
QMUISynthesizeBOOLProperty(qmui_poppingByInteractivePopGestureRecognizer, setQmui_poppingByInteractivePopGestureRecognizer)
|
QMUISynthesizeBOOLProperty(qmui_willAppearByInteractivePopGestureRecognizer, setQmui_willAppearByInteractivePopGestureRecognizer)
|
|
- (BOOL)qmui_navigationControllerPoppingInteracted {
|
return self.qmui_poppingByInteractivePopGestureRecognizer || self.qmui_willAppearByInteractivePopGestureRecognizer;
|
}
|
|
- (void)qmui_animateAlongsideTransition:(void (^ __nullable)(id <UIViewControllerTransitionCoordinatorContext>context))animation
|
completion:(void (^ __nullable)(id <UIViewControllerTransitionCoordinatorContext>context))completion {
|
if (self.transitionCoordinator) {
|
BOOL animationQueuedToRun = [self.transitionCoordinator animateAlongsideTransition:animation completion:completion];
|
// 某些情况下传给 animateAlongsideTransition 的 animation 不会被执行,这时候要自己手动调用一下
|
// 但即便如此,completion 也会在动画结束后才被调用,因此这样写不会导致 completion 比 animation block 先调用
|
// 某些情况包含:从 B 手势返回 A 的过程中,取消手势,animation 不会被调用
|
// https://github.com/Tencent/QMUI_iOS/issues/692
|
if (!animationQueuedToRun && animation) {
|
animation(nil);
|
}
|
} else {
|
if (animation) animation(nil);
|
if (completion) completion(nil);
|
}
|
}
|
|
@end
|
|
@implementation QMUIHelper (ViewController)
|
|
+ (nullable UIViewController *)visibleViewController {
|
UIViewController *rootViewController = UIApplication.sharedApplication.delegate.window.rootViewController;
|
UIViewController *visibleViewController = [rootViewController qmui_visibleViewControllerIfExist];
|
return visibleViewController;
|
}
|
|
@end
|