gpt4 book ai didi

swift - 连接到互联网时刷新应用程序

转载 作者:行者123 更新时间:2023-11-28 09:02:56 25 4
gpt4 key购买 nike

目前,如果我在没有互联网连接的情况下启动我的应用程序,屏幕只会启动白色。

然后,当您连接到互联网并再次启动该应用程序时,它仍将保持白色(除非您完全关闭该应用程序并通过互联网连接启动该应用程序。)

所以我希望能够制作某种保留页面,显示没有互联网连接,然后一旦应用程序再次启动并连接到它,它将自动刷新或重定向页面以显示正确的内容。

我想知道是否有刷新 View Controller 的方法?我只能在 TableView Controller 中看到它吗?

最佳答案

要刷新您自己的 View Controller ,只需编写您自己的更新例程。例如

func upateUI(data: [String: AnyObject]) {
nameLabel?.text = data["name"] as? String
mySwitch.on = data["active"] as! Int > 0
// etc.
}

一种常见的方法是使用NSNotification 来提醒任何可见的 View 。只需在通知变得可见时通过 NSNotificationCenter 注册通知,并在它离开屏幕时取消注册。

关于swift - 连接到互联网时刷新应用程序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31609107/

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