我们有我们的应用程序目标,在该Info.plist中,我们定义了可用于使用URL打开应用程序的URL方案. 现在我们正在添加今天的扩展.我们希望有一个表格视图,他将从扩展程序中打开该URL.我们看
现在我们正在添加今天的扩展.我们希望有一个表格视图,他将从扩展程序中打开该URL.我们看到API如何支持它.
我们可以从应用程序的Info.plist中获取URL方案,还是我们基本上“硬编码”扩展中的值来调用open?
要获取infos.plist值,您可以使用:let urlTypesArray = NSBundle.mainBundle().objectForInfoDictionaryKey("CFBundleURLTypes")
你可以找到正确的密钥(CFBundleURLTypes)打开info.plist作为源代码(右键单击)
然后,找到价值:
let urlSchemesValue = urlTypesArray![0]["CFBundleURLSchemes"] print("urlSchemesValue => \(urlSchemesValue)")