在swift中通过url方案在两个应用程序之间传递数据?

Pass data between two Apps by url scheme in swift?

有两个名为 Sender 和 Receiver 的测试应用程序

他们通过Url Scheme 相互通信。我想从发送方向接收方发送一个字符串,可以吗?

关于字符串的详细信息:

我都在 Sender 和 Receiver 中创建文本字段,我会在 Sender 文本字段上发送一些字符串。当我单击按钮时,字符串将显示在接收方文本字段中。

这是我的 App Receiver 代码:

在 Appdelegate 中

func application(application: UIApplication, openURL url: NSURL, sourceApplication: String?, annotation: AnyObject) -> Bool {

    calledBy = sourceApplication
    fullUrl = url.absoluteString
    scheme = url.scheme
    query = url.query
}

在viewController

override func viewDidLoad() {
    super.viewDidLoad()

    NSNotificationCenter.defaultCenter().addObserver(self, selector: #selector(ViewController.displayLaunchDetails), name: UIApplicationDidBecomeActiveNotification, object: nil)
    // Do any additional setup after loading the view, typically from a nib.
}

func displayLaunchDetails() {
    let receiveAppdelegate = UIApplication.sharedApplication().delegate as! AppDelegate
    if receiveAppdelegate.calledBy != nil {
        self.calledByText.text = receiveAppdelegate.calledBy
    }
    if receiveAppdelegate.fullUrl != nil {
        self.fullUrlText.text = receiveAppdelegate.fullUrl
    }
    if receiveAppdelegate.scheme != nil {
        self.schemeText.text = receiveAppdelegate.scheme
    }
    if receiveAppdelegate.query != nil {
        self.queryText.text = receiveAppdelegate.query
    }
}

现在,我只能显示 url

的信息

希望得到一些建议!

当然可以。您只需编写您的应用程序启动 URL 并像这样传递参数

iOSTest://?param1=Value1&param2=Valuew

然后在UIApplicationDelegate中解析

是的,您可以使用查询字符串。

url.query 包含查询字符串。例如,在 URL iOSTest://www.example.com/screen1?textSent="Hello World",查询字符串为textSent="Hello World" .

通常我们也使用URL方案进行深度链接,因此URL方案指定打开哪个应用程序,url中的路径指定打开哪个屏幕和查询字符串我们要发送到应用程序的其他参数。

url.query 是一个字符串,因此您必须解析它以获得所需的值: 例如URLiOSTest://www.example.com/screen1?key1=value1&key2=value2,查询字符串为key1=value1&key2=value2。我正在编写代码来解析它,但请确保针对您的情况对其进行测试:

    let params = NSMutableDictionary()
    let kvPairs : [String] = (url.query?.componentsSeparatedByString("&"))!
    for param in  kvPairs{
        let keyValuePair : Array = param.componentsSeparatedByString("=")
        if keyValuePair.count == 2{
            params.setObject(keyValuePair.last!, forKey: keyValuePair.first!)
        }
    }

params 将包含查询字符串中的所有键值对。 希望对您有所帮助:]

如果你不想做深层链接,你可以直接将queryString附加到scheme。例如:iOSTest://?textSent="Hello World"