ios – 如何解雇UIPageViewController?

前端之家收集整理的这篇文章主要介绍了ios – 如何解雇UIPageViewController?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我在新游戏中添加了一个UIPageViewController用于指令,我想在用户按下连接到UIPageViewController的最后一个UIViewController上的“GOT IT”按钮后关闭UIPageViewController

到目前为止我试过这个:

@H_404_4@[self.pageVC dismissViewControllerAnimated:YES completion:nil];

并没有删除UIPageViewController,为什么呢?

我该怎么解雇呢?

为了显示/呈现UIPageViewController,我这样做:

@H_404_4@[self addChildViewController:self.pageVC]; [self.view addSubview:self.pageVC.view]; [self.pageVC didMoveToParentViewController:self];

10x提前!

解决方法

请尝试您所描述的相反电话: @H_404_4@[self.pageVC.view removeFromSuperview]; [self.pageVC removeFromParentViewController];
原文链接:https://www.f2er.com/iOS/328894.html

猜你在找的iOS相关文章