gpt4 book ai didi

ios - openURL 回调?

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

用户拒绝定位,我将用户发送到“设置”应用上的“定位”设置:

UIApplication.sharedApplication().openURL(NSURL(string:"prefs:root=LOCATION_SERVICES")!)

用户从“设置”应用程序授权位置,返回我的应用程序并在左上角使用返回应用程序

我怎么知道他回到了应用程序? viewDidAppear 不起作用

最佳答案

您可以通过检查AppDelegate 的 方法轻松检测:-

func applicationWillEnterForeground(application: UIApplication!) {

或者通过 NSNotificationCenter 在 View Controller 的 viewDidLoad() 中注册通知:-

NSNotificationCenter.defaultCenter().addObserver(self, selector: "applicationWillEnterForeground", name: UIApplicationWillEnterForegroundNotification, object: nil)


//calling selector method
func applicationWillEnterForeground() {
println("did enter foreground")
}

关于ios - openURL 回调?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35546442/

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