码迷,mamicode.com
首页 > 移动开发 > 详细

iOS 获取view的controller UIView+UIViewController

时间:2016-04-29 16:24:54      阅读:172      评论:0      收藏:0      [点我收藏+]

标签:

直接上代码,简单易懂:

#import "UIView+UIViewController.h"

@implementation UIView (UIViewController)

- (UIViewController *)viewController {
   
    //通过响应者链,取得此视图所在的视图控制器
    UIResponder *next = self.nextResponder;
    do {
        
        //判断响应者对象是否是视图控制器类型
        if ([next isKindOfClass:[UIViewController class]]) {
            return (UIViewController *)next;
        }
        
        next = next.nextResponder;
        
    }while(next != nil);
    
    return nil;
}

@end


iOS 获取view的controller UIView+UIViewController

标签:

原文地址:http://blog.csdn.net/xy_26207005/article/details/51260919

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!