小伙伴本有没有遇到App处于后台的时候,需要点击接到的通知或者通过3D Touch进入一个界面,首先得找到我的App当前展示的界面是哪个,才能做我们的其他操作.那么咱们去找到这个界面~
下面就是答案啦.可以把它放到推送和3D Touch的回调方法里面就可以啦.
/*
获取当前展示的视图
*/
if (application.applicationState == UIApplicationStateInactive) {
UIViewController *appRootVC = [UIApplication sharedApplication].keyWindow.rootViewController;
UIViewController *topVC = appRootVC;
UIViewController *currentVC = nil;
if (topVC.presentedViewController) {
topVC = topVC.presentedViewController;
NSLog(@"数组:%@", topVC.childViewControllers);
NSLog(@"模态出最外层的视图%@", [topVC.childViewControllers lastObject]);
//有模态情况下的根视图
currentVC = [topVC.childViewControllers lastObject];
} else {
//获取非模态情况下的根视图
currentVC = [self getCurrentVC];
}
//在下方就可以执行你想做的事情了--(比如)通过当前展示的视图直接进入消息推送界面,当你pop回来的时候还是你之前的那个界面
/*
MessageVC *message = [[MessageVC alloc] init];
message.hidesBottomBarWhenPushed = YES;
[currentVC.navigationController pushViewController:message animated:YES];
*/
}
在此说明一下,根视图是window指定的rootcontroller.当有模态控制器的时候,根视图的presentedViewController是有值的,那么presentedViewController的childViewControllers的最后一个元素就是当前展示的界面.
上边代码有一个方法.-getCurrentVC.是获取没有模态情况下的当前展示的界面
//获取当前屏幕显示的viewcontroller
- (UIViewController *)getCurrentVC {
UIViewController *result = nil;
UIWindow * window = [[UIApplication sharedApplication] keyWindow];
if (window.windowLevel != UIWindowLevelNormal) {
NSArray *windows = [[UIApplication sharedApplication] windows];
for(UIWindow * tmpWin in windows) {
if (tmpWin.windowLevel == UIWindowLevelNormal) {
window = tmpWin;
break;
}
}
}
UIView *frontView = [[window subviews] objectAtIndex:0];
id nextResponder = [frontView nextResponder];
if ([nextResponder isKindOfClass:[UIViewController class]]) {
result = nextResponder;
} else {
result = window.rootViewController;
}
/*
* 在此判断返回的视图是不是你的根视图--我的根视图是tabbar
*/
if ([result isKindOfClass:[MainTabBarController class]]) {
MainTabBarController *mainTabBarVC = (MainTabBarController *)result;
result = [mainTabBarVC selectedViewController];
result = [result.childViewControllers lastObject];
}
NSLog(@"非模态视图%@", result);
return result;
}
没有模态情况下的当前展示的界面,因为我的根视图是tabbar,所以一旦判断出我当前展示的界面是根视图,那么就去找他的当前选择的控制器(selectedViewController), 他的childViewControllers的最后一个元素就是我们找的当前展示的视图.
if ([result isKindOfClass:[MainTabBarController class]]) {
MainTabBarController *mainTabBarVC = (MainTabBarController *)result;
result = [mainTabBarVC selectedViewController];
result = [result.childViewControllers lastObject];
}
网友评论