提问人:Baxter 提问时间:9/23/2021 更新时间:9/23/2021 访问量:34
关闭从其他方法呈现的视图控制器
Dismiss view controller that was presented from a different method
问:
我正在尝试使用一种方法呈现自定义 UIViewController,并从另一种方法中关闭相同的 UIViewController。
用于显示控制器的方法:
-(void)presentViewController {
self.customView = [[UIViewController alloc] init];
[self.customView setModalPresentationStyle: UIModalPresentationOverFullScreen];
[self presentViewController:self.customView animated:YES completion:nil];
}
用于关闭控制器的方法:
-(void)dismissViewController {
[self.customView dismissViewControllerAnimated:YES completion:nil];
}
在我的 中创建一个按钮时,调用 ,什么也没发生。我知道正在调用该方法,因为标签正在工作,但视觉上没有任何反应。也没有将错误打印到控制台。customView
dismissViewController
completion:
也许我做错了整件事,但任何帮助都是值得赞赏的!只是想学习。
答: 暂无答案
评论
dismissViewController