gpt4 book ai didi

ios - 如何使用 Swift 在 ios 中关闭 viewController

转载 作者:搜寻专家 更新时间:2023-10-31 08:09:47 25 4
gpt4 key购买 nike

我有一个 viewController,它只包含一个 imageview。我想在应用程序加载时显示它,例如从 Web 服务获取数据。所以我在我的 loaderViewController 中创建了一个函数

func showLoading(viewController:UIViewController) {
viewController.presentViewController(LoadingViewController(), animated: false, completion: nil)
}

这是按预期工作的,当我在需要时调用此函数时如下所示

var loader = LoadingViewController()
loader.showLoading(self)

它向我显示带有图像的 viewController。

但是现在想在需要时关闭此 viewController 但我无法这样做,这是我到目前为止所尝试的,我在我的 LoaderViewController 中创建了另一个函数作为

func dismissLoader() {
let load = LoadingViewController()
load.dismissViewControllerAnimated(true) {
print("Dismissing Loader view Controller")
}
}

但是它不起作用,viewController 也没有从屏幕上消失。

请指导我

最佳答案

您不必创建加载器的新实例并对其调用 dismissViewControllerAnimated(_:Bool)

打电话

self.dismissViewControllerAnimated(true)

在你的 View Controller 上

所以,你的函数将是

func dismissLoader() {

dismissViewControllerAnimated(true) {
print("Dismissing Loader view Controller")
}
}

关于ios - 如何使用 Swift 在 ios 中关闭 viewController,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38916099/

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