ios - 将文件添加到我的 Plist - 我想我快到了
<p><p>在我的 iOS 应用程序中,我制作了一个应该将数据提交到 plist 的表单。我已经按照此链接中的示例进行了其他操作 - </p>
<blockquote>
<p><a href="https://stackoverflow.com/questions/7628372/ios-how-to-write-a-data-in-plist" rel="noreferrer noopener nofollow">How to write a data in plist?</a></p>
</blockquote>
<p>现在我认为我所做的一切都是正确的,除了我遇到了一个错误并且它与 ARC 相关 - Xcode 说 - 所以我不确定我使用的示例是否已经过时,或者我是否忘记了一些东西。</p>
<p>澄清一下-我有带有适当-(IBAction) 的保存按钮,它没有给出任何错误,所以我认为我在那里没问题。我认为需要调整的一点是将原始 Data.plist 复制到我认为我想用这个来实现的文件夹中。 </p>
<p>我已经粘贴了下面发生错误的代码。任何帮助都很棒,如果我可以通过发布更多代码来提供帮助,请告诉我:-)</p>
<pre><code>- (void)viewDidLoad
{
;
// Do any additional setup after loading the view.
NSString *destPath = ;
destPath = ;
// If the file doesn't exist in the Documents Folder, copy it.
NSFileManager *fileManager = ;
if (!) {
NSString *sourcePath = [ pathForResource:@"Data" ofType:@"plist"];
;
}
// Load the Property List.
savedReadingsDictionary = [ initWithContentsOfFile:destPath];
}
</code></pre>
<p>杰夫干杯</p>
<p>我只是注意到我没有澄清是什么给了我错误:</p>
<p>就是这条线</p>
<pre><code>;
</code></pre>
<p>错误是:</p>
<blockquote>
<p>ARC Issue - No visible @interface for 'NSFileManager' declares the selector 'copyItemAtPath:toPath:'</p>
</blockquote></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>您使用了一种不存在的方法。您只需将其更改为 </p>
<pre><code>;
</code></pre>
<p>除了将 <code>nil</code> 作为错误传递,您还可以传递您的自定义 <code>NSError</code> 对象。引用 <a href="https://developer.apple.com/library/mac/#documentation/Cocoa/Reference/Foundation/Classes/NSFileManager_Class/Reference/Reference.html" rel="noreferrer noopener nofollow"><code>NSFileManager</code> class reference</a>查看所有允许的方法</p></p>
<p style="font-size: 20px;">关于ios - 将文件添加到我的 Plist - 我想我快到了,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/9868922/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/9868922/
</a>
</p>
页:
[1]