我有一个有UIImageView的UIView。 UIImageView是我视图的完整宽度和高度,它被用作视图的背景。
在我的UIview视图控制器中,我通过调用加载一个新视图
[self presentViewController:editorController animated:YES completion:nil];
使用完此视图后,在我的父视图控制器中调用以下代码。
[editorController dismissViewControllerAnimated:YES completion:NULL];
正如预期的那样,编辑器视图被删除了,但是用作背景的以下视图的UIImageView完全消失了。