本文介绍了如何保存一个数组在App的mainBundle在迅疾的.plist的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我如何保存数组的数组类型的.plist?

我尝试这一点,但不工作

 让PATH = NSBundle.mainBundle()pathForResource(设置,ofType:plist中)。
    让arrayWithProperties = NSArray中(阵:
        的NSNumber(整数nowThemeSelected)
        的NSNumber(整数imageForBackgroundNumber)
        的NSNumber(整数imageForButtonNumber)
        的NSNumber(整数colorOfButton)])
    arrayWithProperties.writeToFile(路径!原子:真)


解决方案

您不能写在iOS的主束,你的应用程序包内的一切是只读的。

Consider reading the file system programming guide and then persist your plist to the correct location. Preferably the Documents directory or the Library directory. Up to you.

这篇关于如何保存一个数组在App的mainBundle在迅疾的.plist的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-27 01:46