答案 0 :(得分:0)
解决问题的一个方法是获取当前视图的屏幕截图。
UIGraphicsBeginImageContext(self.view.bounds.size);
[self.view.layer renderInContext:UIGraphicsGetCurrentContext()];
UIImage *viewImage = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
然后隐藏我们的视图并为屏幕截图图像设置动画。 然后用计时器功能显示我们的视图。