IOS UIView的跳转
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了IOS UIView的跳转相关的知识,希望对你有一定的参考价值。
#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的跳转的主要内容,如果未能解决你的问题,请参考以下文章
UIView 纵横比混淆 systemLayoutSizeFittingSize