#pragma mark返回當(dāng)前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];
成都創(chuàng)新互聯(lián)是專業(yè)的平川網(wǎng)站建設(shè)公司,平川接單;提供網(wǎng)站建設(shè)、成都做網(wǎng)站,網(wǎng)頁設(shè)計,網(wǎng)站設(shè)計,建網(wǎng)站,PHP網(wǎng)站建設(shè)等專業(yè)做網(wǎng)站服務(wù);采用PHP框架,可快速的進(jìn)行平川網(wǎng)站開發(fā)網(wǎng)頁制作和功能擴(kuò)展;專業(yè)做搜索引擎喜愛的網(wǎng)站,專業(yè)的做網(wǎng)站團(tuán)隊,希望更多企業(yè)前來合作!
[[self funResponderVC] presentViewController:vc animated:YES completion:nil];
這樣就實現(xiàn)了UIVIew的跳轉(zhuǎn),其實可以寫在UIViewController,不必這么麻煩,可是考慮到代碼的封裝性以及代碼后期的修改,所以遇到在UIVIew的跳轉(zhuǎn)是必不可少的。