UIResponder - 3

如果想通过视图获取自身,或者是superView的视图控制器类,想起来觉得非常不可以思议,但是通过UIResponder的响应链就非常好实现,我们可以重新看回UIResponder - 1 文章,有一张响应者链的图:


通过这个,就非常好实现了,参考:

http://apluck.iteye.com/blog/1748432

- (UIViewController*)viewController
{
    for (UIView* next = [self superview]; next; next = next.superview)
    {
        UIResponder* nextResponder = [next nextResponder];
        
        if ([nextResponder isKindOfClass:[UIViewController class]])
        {
            return (UIViewController*)nextResponder;
        }
    }
    
    return nil;
}

测试:

1.直接添加子类:

#import "LBAccessViewController.h"

@interface LBAccessViewController ()

@end

@implementation LBAccessViewController


- (void)viewDidLoad
{
    [super viewDidLoad];

    LBAccessView* myview = [[LBAccessView alloc] init];
    [self.view addSubview:myview];
    
    NSLog(@"self   : %@", self);
    NSLog(@"access : %@", [myview viewController]);
}

@end

#pragma mark - LBAccessView.

@implementation LBAccessView


- (UIViewController*)viewController
{
    for (UIView* next = [self superview]; next; next = next.superview)
    {
        UIResponder* nextResponder = [next nextResponder];
        
        if ([nextResponder isKindOfClass:[UIViewController class]])
        {
            return (UIViewController*)nextResponder;
        }
    }
    
    return nil;
}

@end

输出:


2.先添加其他视图,即嵌套一层视图:

    UIView* containView = [[UIView alloc] init];
    [self.view addSubview:containView];
    
    LBAccessView* myview = [[LBAccessView alloc] init];
    [containView addSubview:myview];
    
    NSLog(@"self   : %@", self);
    NSLog(@"access : %@", [myview viewController]);

输出依旧



当然还有别的方法:

如果存在导航栏NavigationController可以使用这个方法:

@property(nullable, nonatomic,readonly,strong) UIViewController *visibleViewController; // Return modal view controller if it exists. Otherwise the top view controller.

拿到当前看得到的视图控制器,如果木有的话,返回最顶层的视图控制器。



参考:

Reference - 1 : http://apluck.iteye.com/blog/1748432

Reference - 2 : http://www.cnblogs.com/maxfong/p/3423633.html


  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值