佚名通过本文主要向大家介绍了ios 页面跳转,ios界面跳转,ios 多界面跳转,ios 跳转,正在跳转到首页等相关知识,希望对您有所帮助,也希望大家支持linkedu.com www.linkedu.com
问题:正在跳转到首页 iOS 页面跳转问题
描述:
解决方案1:
描述:
这样的一个问题,我在vc1 选择上传视频,present一个UIImagePickerController 选择视频,present到VC2 选择封面 选择完成后点击完成要回到VC1应该怎么做? dismiss 能有一步到位的方法吗
解决方案1:
一般的做法是vc1->picker->vc1->vc2
解决方案2:[self.presentingViewController.presentingViewController dismissViewControllerAnimated:YES completion:nil];
解决方案3:可以的
[self.parentViewController.parentViewController dismissViewControllerAnimated:YES completion:nil];
跳两级则两个点语法 三级则三个~~~