gpt4 book ai didi

ios - 如何关闭多 View Controller

转载 作者:行者123 更新时间:2023-11-29 11:39:49 24 4
gpt4 key购买 nike

我已经为调用库 View 创建了主视图。

在此代码中创建主视图并调用图库 View 。

 GalleryView *GalView=(GalleryView *)[self.storyboard instantiateViewControllerWithIdentifier:@"SBGallery"];
[self presentViewController:GalView animated:YES completion:nil];

在图库 View 中选择照片并调用此代码裁剪照片后。

CropView *CropView=(CropView *)[self.storyboard instantiateViewControllerWithIdentifier:@"SBCrop"];
[self presentViewController:CropView animated:YES completion:nil];

How to close cropview and goto mainview (close cropview and galleryview in single method)??

谢谢你的提前。

最佳答案

你可以这样做,

  [self dismissViewControllerAnimated:NO completion:^{

[previousVC presentViewController:cropVC animated:YES completion:nil];
}];

你必须在 gallery vc 中获取一个属性(比如 previousVC),当你展示 galery vc 时,将自己分配给它(previousVC)。

那么当您关闭 cropVC 时,您的 galleryVC 将不存在,因为您已经关闭了它!

关于ios - 如何关闭多 View Controller ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47234338/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com