URL 申请后定时启动App Store
URL Scheme sometime launch App Store after application
我在我的应用程序中使用 url 方案,我不知道为什么 有时 当我点击 URL(例如 https://api.domain.com/menu?id=7ee5232764-0a79-4afe ) iOS 打开我的应用程序(正确),1 秒后打开 App Store 应用程序(不正确)。这是我的 openUrl 方法:
func application(_ application: UIApplication, open url: URL, options: [UIApplication.OpenURLOptionsKey : Any] = [:] ) -> Bool {
let components = url.absoluteString.components(separatedBy: "/")
if components.contains("menus") {
let menuId = url.lastPathComponent
let menu = Menu(id: menuId)
SessionManager.shared.navigationManager.present(NavigationItem.menu(menu: menu).viewController, animated: true, completion: nil)
return true
} else {
return false
}
}
已解决!错误在 Web 端,他们激活了 JS 超时,在打开应用程序后他们不会停止。
我在我的应用程序中使用 url 方案,我不知道为什么 有时 当我点击 URL(例如 https://api.domain.com/menu?id=7ee5232764-0a79-4afe ) iOS 打开我的应用程序(正确),1 秒后打开 App Store 应用程序(不正确)。这是我的 openUrl 方法:
func application(_ application: UIApplication, open url: URL, options: [UIApplication.OpenURLOptionsKey : Any] = [:] ) -> Bool {
let components = url.absoluteString.components(separatedBy: "/")
if components.contains("menus") {
let menuId = url.lastPathComponent
let menu = Menu(id: menuId)
SessionManager.shared.navigationManager.present(NavigationItem.menu(menu: menu).viewController, animated: true, completion: nil)
return true
} else {
return false
}
}
已解决!错误在 Web 端,他们激活了 JS 超时,在打开应用程序后他们不会停止。