嗨,我在iOS应用程序中使用分支作为深层链接。 如果安装了应用程序,则会打开深层链接并显示应用程序并显示与初始视图控制器不同的视图控制器。 如果未安装该应用程序,则会将用户重定向到AppStore。
Branch的文档说,如果应用程序被重定向到AppStore,我们仍然可以发送它某些参数。(正常情况下)但它无法正常工作。当appstore安装后(在重定向到appstore之后)应用程序打开时,它不会打开它通常通过Branch打开的新视图控制器; s深层链接(当应用程序已经在iPhone中时)。
我的代码如下:
func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplicationLaunchOptionsKey: Any]?) -> Bool {
// Override point for customization after application launch.
UserDefaults.standard.set(false, forKey: "isDataSynced")
UserDefaults.standard.setSecret(securePassword)
// UserDefaults.standard.set(false, forKey: "DeviceIdentifiersSavedInDB")
CommonFunctions.sharedCommonFunctions.setUpSideMenu()
UserDefaults.standard.set(false, forKey: "fromBranch")
Branch.getInstance().initSession(launchOptions: launchOptions) { params, error in
// params are the deep linked params associated with the link that the user clicked -> was re-directed to this app
// params will be empty if no data found
// ... insert custom logic here ...
if error == nil {
print(params as? [String: AnyObject] ?? {})
if let parameters = params as? [String : AnyObject] {
if let link = parameters["~referring_link"] as? String {
if self.validateURL(url: URL(string: link)!) {
UserDefaults.standard.set(false, forKey: "declinedTermsConditions")
UserDefaults.standard.set(true, forKey: "fromBranch")
let initialViewController = self.mainStoryboard.instantiateViewController(withIdentifier: "CustomSideMenuControllerViewController") as! CustomSideMenuControllerViewController
self.window?.rootViewController = initialViewController
}
}
}
}
}
if UserDefaults.standard.value(forKey: udiBarcode) == nil {
} else {
//Navigate to DashBoard VC
let initialViewController = mainStoryboard.instantiateViewController(withIdentifier: "CustomSideMenuControllerViewController") as! CustomSideMenuControllerViewController
self.window = UIWindow(frame: UIScreen.main.bounds)
self.window?.rootViewController = initialViewController
self.window?.makeKeyAndVisible()
}
UserDefaults.standard.set( "true" , forKey: "isFirstTimeAutomationTest")
Fabric.with([Crashlytics.self])
return true
}
func application(_ application: UIApplication,
continue userActivity: NSUserActivity,
restorationHandler: @escaping ([Any]?) -> Void) -> Bool {
Branch.getInstance().continue(userActivity)
return true
}
func application(_ app: UIApplication, open url: URL, options: [UIApplicationOpenURLOptionsKey : Any] = [:]) -> Bool {
// pass the url to the handle deep link call
Branch.getInstance().handleDeepLink(url)
return true
}
答案 0 :(得分:0)
Branch有一个惊人的支持。他们回答了你的每一个查询。在与邮件进行的所有讨论之后。我想到了使用分支在我的深层链接中的循环孔。
我们从后端发送的链接包括反斜杠(**),而分支接受**&符号(&)。当我们用&符替换我们的反斜杠时,它就开始工作了。