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

IOS UIView的跳转

时间:2016-11-11 15:28:21      阅读:202      评论:0      收藏:0      [点我收藏+]

标签:ios

#pragma mark返回当前UIView的UIController
- (UIViewController *)funResponderVC{
    UIView *net = [super superview]; // 返回上一级的视图。直到找到UIViewController视图为止
    UIResponder *nextResponder = [next nextResponder];
    
    if ([nextResponder isKindOfClass:[UIViewController class]])
        
    {
        
        return (UIViewController *)nextResponder;
        
    }
    else{
        return nil;
    }
}

 UIViewController *vc = [[UIViewController alloc] init];

    [[self funResponderVC] presentViewController:vc animated:YES completion:nil];

这样就实现了UIVIew的跳转,其实可以写在UIViewController,不必这么麻烦,可是考虑到代码的封装性以及代码后期的修改,所以遇到在UIVIew的跳转是必不可少的。

本文出自 “雪花飞落满人间” 博客,请务必保留此出处http://smengxiang.blog.51cto.com/11204872/1871740

IOS UIView的跳转

标签:ios

原文地址:http://smengxiang.blog.51cto.com/11204872/1871740

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