菜鸟教程小白 发表于 2022-12-12 23:24:23

ios - 写入值后获取 plist 数据时出错


                                            <p><p>我正在尝试制作一个 plist 文件以在我的 <code>SKScene</code> 和设置 ViewController 之间共享数据。
由于我允许用户在游戏过程中随时访问设置,因此如果用户进行任何更改,我总是从 plist 文件 b4 中获取数据以启动游戏。</p>

<pre><code>func startGame() {
    gameStarted = true;

    plistPath = NSBundle.mainBundle().pathForResource(&#34;Settings&#34;, ofType: &#34;plist&#34;);
    dict = NSMutableDictionary(contentsOfFile: plistPath);

    let speed: CGFloat = dict.valueForKey(&#34;Speed&#34;) as CGFloat;

}
</code></pre>

<p>如果用户根本不去设置更改设置,我可以运行此功能而不会中断和错误。<br/>
但是一旦我在设置 ViewController 中更改了速度值,并且一旦调用了这个函数, <code>plistPath = NSBundle.mainBundle().pathForResource("Settings", ofType: "plist");</code> 总是抛出<code>EXC_BAD_INSTRUCTION</code> 错误。</p>

<p>这就是我从 plist 更改值的方式</p>

<pre><code>let plistPath = NSBundle.mainBundle().pathForResource(&#34;Settings&#34;, ofType: &#34;plist&#34;);
var dict: NSMutableDictionary = NSMutableDictionary(contentsOfFile: plistPath);

dict = NSMutableDictionary(dict.setValue(speed, forKey: &#34;Speed&#34;));
dict.writeToFile(plistPath, atomically: true);
</code></pre>

<p>编辑:我注意到问题来自这一行 <code>let speed: CGFloat = dict.valueForKey("Speed") as CGFloat;</code> 似乎一旦我删除它就不会抛出任何错误,但它a 我需要它从 plist 中读取值吗?</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>尝试使用</p>

<pre><code>var plistPath = NSBundle.mainBundle().pathForResource(&#34;Settings&#34;, ofType: &#34;plist&#34;);
</code></pre>

<p>代替</p>

<pre><code>let plistPath = NSBundle.mainBundle().pathForResource(&#34;Settings&#34;, ofType: &#34;plist&#34;);
</code></pre>

<p>这解决了我的问题。</p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 写入值后获取 plist 数据时出错,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/24446920/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/24446920/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 写入值后获取 plist 数据时出错