菜鸟教程小白 发表于 2022-12-12 20:01:16

ios - 我的 iOS 应用更新从用户的旧版本中删除了持久数据


                                            <p><p>在我的 iOS 应用程序中,我允许用户保存他们的 UI 预设。</p>

<pre><code>NSArray* theDirs = [ URLsForDirectory:NSApplicationSupportDirectory
                                                          inDomains:NSUserDomainMask];
NSURL *supportDir = ;
NSURL *presetURL = ;

// Write to disk.
NSData *presetData = ;
NSString *presetPath = [ stringByAppendingPathComponent:];
if ([ fileExistsAtPath:presetPath]) {
    [ removeItemAtPath:presetPath error:nil];
}
[ createFileAtPath:presetPath contents:presetData attributes:nil];
</code></pre>

<p>我刚刚在 iOS7 的应用商店上发布了更新。用户给我发邮件提示说他们的预设在更新时被删除了...... </p>

<p>是我选择使用的目录吗(支持)??? </p>

<p>任何帮助将不胜感激!</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>尝试使用文档的目录。你可以这样访问它:</p>

<pre><code>NSArray *directoryPath = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
NSString *directory = ;
</code></pre>

<p>您应该可以在这里自由添加/删除文件/目录到您的心内容。</p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 我的 iOS 应用更新从用户的旧版本中删除了持久数据,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/22333667/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/22333667/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 我的 iOS 应用更新从用户的旧版本中删除了持久数据