0
ブレークポイントを設定することで、アプリケーションが終了しているときにハンドラが呼び出されていることに気付きました。branch.initSessionWithLaunchOptionsハンドラがアプリケーション終了時に起動する
何か間違っていますか?もしそうでなければ、なぜブランチはこれをしたいのですか?
// This is in app delegate
branch.initSessionWithLaunchOptions(launchOptions, automaticallyDisplayDeepLinkController: true, deepLinkHandler: { params, error in
// breakpoint
if error == nil {
self.handleDeepLink(params)
}
else {
error?.showInToast()
}
})
}
こんにちはakex、それは私が知っている!いくつかのブレークポイントを入れて、あなたに戻ってください。それは非常に散発的です。 –