美文网首页技术文档iOS DeveloperiOS 开发
iOS-获取当前View所在的控制器

iOS-获取当前View所在的控制器

作者: 传递正正正能量 | 来源:发表于2016-09-24 22:59 被阅读168次

在做轮播图的时候,有点轮播图展示的是广告,有的是活动,等等还有其他的

当前点击某个轮播的时候要跳转到不同的控制器,点击事件是在控制器写的,为了避免控制器代码过多,显示的臃肿

我创建了一个UIWindow的分类,暂且叫Model (GetCurrentVC)

谷歌还有很多方法,我这个方法亲测有效,其他方法后续再测试

一:

@interfaceUIWindow (GetCurrentVC)

- (UIViewController*)getCurrentVC;

@end

二:

#import"UIWindow+GetCurrentVC.h"

@implementationUIWindow (GetCurrentVC)

-  (UIViewController*)getCurrentVC {

UIViewController*result =nil;

UIWindow* window = [[UIApplicationsharedApplication]keyWindow];

if(window.windowLevel!=UIWindowLevelNormal)

{

NSArray*windows = [[UIApplicationsharedApplication]windows];

for(UIWindow* tmpWininwindows)

{

if(tmpWin.windowLevel==UIWindowLevelNormal)

{

window = tmpWin;

break;

}

}

}

UIView*frontView = [[windowsubviews]objectAtIndex:0];

idnextResponder = [frontViewnextResponder];

if([nextResponderisKindOfClass:[UIViewControllerclass]])

result = nextResponder;

else

result = window.rootViewController;

returnresult;

}

@end

相关文章

网友评论

本文标题: iOS-获取当前View所在的控制器

本文链接:https://www.haomeiwen.com/subject/tszxyttx.html