在 Today 扩展中加载文件

Posted

技术标签:

【中文标题】在 Today 扩展中加载文件【英文标题】:Load file in Today extension 【发布时间】:2014-07-15 06:13:40 【问题描述】:

我一直在尝试创建一个 Today 扩展,它需要访问文档目录中的 .plist 文件。我已经为应用程序和扩展程序设置了应用程序组。

虽然我看到了NSUserDefaults 的示例,但我找不到任何可以访问文件的内容。

我尝试像这样访问文件(在应用程序本身中有效)

let paths = NSSearchPathForDirectoriesInDomains(
        .DocumentDirectory, .UserDomainMask, true)
let documentsDirectory = paths[0] as String
let filePath = "\(documentsDirectory)/config.plist"

if NSFileManager.defaultManager().fileExistsAtPath(filePath) // false

… 

但我在控制台中收到以下错误消息:

Warning: CFFIXED_USER_HOME is not set!  It should be set to the simulated home directory.
Failed to inherit CoreMedia permissions from 59919: (null)

文档说明了如何使用 NSFileCoordinatorNSFilePresenter。我不知道如何使用它们。我确定我需要在某处告诉他们应用程序组标识符,但我不知道在哪里。

【问题讨论】:

【参考方案1】:

我让它工作了。由于我不需要从扩展名写入文件,我认为我不需要使用NSFileCoordinator。原来 NSFileManager 有一个方法 containerURLForSecurityApplicationGroupIdentifier() 用于检索容器 URL。

let manager = NSFileManager()
let containerURL = manager.containerURLForSecurityApplicationGroupIdentifier("group.MyGroupIdentifier")

let filePath = "\(containerURL.path)/config.plist"
let settings = NSDictionary(contentsOfFile: filePath)

【讨论】:

您是否在设备锁定的情况下尝试过此操作?该文件是否仍然为您加载?只要手机没有被锁定,它对我来说就很好用,但是如果我有密码,就没有数据通过。见这里:***.com/questions/25938178/… @ccwasden 没问题……

以上是关于在 Today 扩展中加载文件的主要内容,如果未能解决你的问题,请参考以下文章

在 pig 中加载多个文件 - 扩展

如何在 C# Unity 中加载带有扩展名(.json)的资产文件夹中的任何文件

如何在 chrome 扩展中加载 Google Analytics 和 Facebook SDK?

如何使用 NGINX、PHP-FPM 在 docker-compose.yml 文件中加载 mysqli 扩展

如何在html文件中加载css文件已经在django中扩展了另一个html文件(base.html)

Chrome 扩展程序未在 YouTube 的浏览器导航中加载