iOS Today Extension可以从应用程序的Info.plist中读取URL Schemes

时间:2015-01-30 23:30:49

标签: swift ios8 ios8-extension ios8-today-widget today-extension

我们有我们的应用目标,在该Info.plist中,我们定义了可用于通过URL打开应用的URL方案。

现在我们正在添加今天的扩展程序。我们希望有一个表格视图,他将从扩展程序中打开该URL。我们看到API如何支持它。

我们可以从应用程序的Info.plist中获取URL方案,还是我们基本上"硬编码"它要调用open的扩展名中的值?

2 个答案:

答案 0 :(得分:2)

要获取infos.plist值,您可以使用:

let urlTypesArray = NSBundle.mainBundle().objectForInfoDictionaryKey("CFBundleURLTypes")

你可以找到正确的密钥(CFBundleURLTypes)打开info.plist作为源代码(右键单击)

然后,找到值:

let urlSchemesValue = urlTypesArray![0]["CFBundleURLSchemes"]
print("urlSchemesValue => \(urlSchemesValue)") 

答案 1 :(得分:0)

@damien的回答不正确。那只会返回扩展名 Info.plist 文件。

正确的答案可以在另一篇SO帖子中找到here