似乎我无法使用我的方法打开第二个应用程序。没啥事儿。这里有什么愚蠢的错误吗?
我的第二个应用.plist文件
我的第一个应用代码
def Person(models.Model):
name = models.CharField(max_length=30)
status = models.ManyToManyField(Status)
def Status(models.Model):
name = models.CharField(max_length=30)
答案 0 :(得分:1)
除URL Schemes
下的Item 0
外,您还需要添加URL identifier
CFBundleURLName
,如here所示。
答案 1 :(得分:0)
试试这段代码:
let url = NSURL(string: "CRM://")
if (UIApplication.sharedApplication().canOpenURL(url!)) {
UIApplication.sharedApplication().openURL(url!)
}