Swift,无法使用“深层链接”打开第二个应用

时间:2015-07-23 03:21:31

标签: ios swift

似乎我无法使用我的方法打开第二个应用程序。没啥事儿。这里有什么愚蠢的错误吗?

我的第二个应用.plist文件

enter image description here

我的第一个应用代码

def Person(models.Model):
    name = models.CharField(max_length=30)
    status = models.ManyToManyField(Status)

def Status(models.Model):
    name = models.CharField(max_length=30)

2 个答案:

答案 0 :(得分:1)

URL Schemes下的Item 0外,您还需要添加URL identifier CFBundleURLName,如here所示。

enter image description here

答案 1 :(得分:0)

试试这段代码:

let url = NSURL(string: "CRM://")
if (UIApplication.sharedApplication().canOpenURL(url!)) {
    UIApplication.sharedApplication().openURL(url!)
}