ios - 在 Today 扩展中加载文件
<p><p>我一直在尝试创建一个 Today 扩展,它需要访问文档目录中的 <code>.plist</code> 文件。我已经为应用程序和扩展程序设置了应用程序组。 </p>
<p>虽然我看到了 <code>NSUserDefaults</code> 的示例,但我找不到任何用于访问文件的内容。 </p>
<p>我尝试像这样访问文件(在应用程序本身中有效)</p>
<pre><code>let paths = NSSearchPathForDirectoriesInDomains(
.DocumentDirectory, .UserDomainMask, true)
let documentsDirectory = paths as String
let filePath = "\(documentsDirectory)/config.plist"
if NSFileManager.defaultManager().fileExistsAtPath(filePath) // false
{
…
}
</code></pre>
<p>但我在控制台中收到以下错误消息:</p>
<pre><code>Warning: CFFIXED_USER_HOME is not set!It should be set to the simulated home directory.
Failed to inherit CoreMedia permissions from 59919: (null)
</code></pre>
<p>文档说明了有关使用 <code>NSFileCoordinator</code> 和 <code>NSFilePresenter</code> 的内容。我不知道如何使用它们。我确定我需要在某处告诉他们应用程序组标识符,但我不知道在哪里。 </p></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>我让它工作了。由于我不需要从扩展编写文件,我认为我不需要使用 <code>NSFileCoordinator</code>。原来 <code>NSFileManager</code> 有一个方法 <code>containerURLForSecurityApplicationGroupIdentifier()</code> 用于检索容器 URL。</p>
<pre><code>let manager = NSFileManager()
let containerURL = manager.containerURLForSecurityApplicationGroupIdentifier("group.MyGroupIdentifier")
let filePath = "\(containerURL.path)/config.plist"
let settings = NSDictionary(contentsOfFile: filePath)
</code></pre></p>
<p style="font-size: 20px;">关于ios - 在 Today 扩展中加载文件,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/24751028/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/24751028/
</a>
</p>
页:
[1]