7

每个人。我的问题是:如何从深层链接 URL 获取数据?我有两个应用程序,我想使用深层链接将数据从 app1 发送到 app2。我在 app1 上有一个按钮可以单击并打开 app2,然后 app 2 将通过深层链接 URL 从 app1 获取数据。

这是我在 app1 中发送按钮的代码:

@IBAction func btnSend_Clicked(_ sender: Any) {
    let text = self.txtInput.text?.replacingOccurrences(of: " ", with: "%20")
    UIApplication.shared.open(URL(string: "myapp://?code=\(text!)")!, options: [:], completionHandler: nil)
}

那么,如何从 app2 中的深层链接 url(代码参数)获取数据?

真的谢谢你的帮助!!!!

4

1 回答 1

10

您在 Appdelegate 中实现此代码:

 func application(_ app: UIApplication, open url: URL, options: [UIApplicationOpenURLOptionsKey : Any] = [:]) -> Bool {
        let urlComponents = URLComponents(url: url, resolvingAgainstBaseURL: false)
        let items = (urlComponents?.queryItems)! as [NSURLQueryItem]
        if (url.scheme == "myapp") {
            var vcTitle = ""
            if let _ = items.first, let propertyName = items.first?.name, let propertyValue = items.first?.value {
                vcTitle = url.query!//"propertyName"
               }
        }
        return false
   }
于 2017-06-16T04:39:56.953 回答