English 中文(简体)
清单中的数据储存在模拟材料中,但不在装置中
原标题:Data storing in plist works in simulaor but not in device
  • 时间:2010-04-12 16:48:05
  •  标签:
  • iphone
  • plist
问题回答

(1) 您可以书写一个Pi.资源夹中的档案。 它是电话安全系统的一部分,防止恶意密码在安装后改变申请。

(2) 如果你想在档案中节省新数据,你需要将档案写给自动产生的文件夹之一。 每当装置或模拟器上安装一台“仪表”时,该系统就会产生一套缺省夹。

(3) 您要写给参考文件夹或文件夹。 如果数据涉及配料的操作,则将其改为优惠。 如果包含用户数据,则将提交文件。

参考:

NSArray *sysPaths = NSSearchPathForDirectoriesInDomains(NSLibraryDirectory,NSUserDomainMask, YES); 
NSString *prefsDirectory = [[sysPaths objectAtIndex:0] stringByAppendingPathComponent:@"/Preferences"];

文件:

NSArray *sysPaths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory ,NSUserDomainMask, YES); 
NSString *docsDirectory = [sysPaths objectAtIndex:0];

你们想读出一个缺省优惠名单,作一些改动,然后把优惠放在一边。

NSString *plistPath=[[NSBundle mainBundle] pathForResource:@"PlistFileName" ofType:@"plist"];
NSMutableArray *defaultPrefs=[[NSMutableArray alloc] initWithContentsOfFile:plistPath];
//... modify defaultPrefs
NSString *outputFilePath=[prefsDirectory stringByAppendingPathComponent:@"alteredPrefs.plist"];
[defaultPrefs writeToFile:outputFilePath atomically:NO];




相关问题
Code sign Error

I have created a new iPhone application.I have two mach machines. I have created the certificate for running application in iPhone in one mac. Can I use the other mac for running the application in ...

ABPersonViewController Usage for displaying contact

Created a View based Project and added a contact to the AddressBook using ABAddressBookRef,ABRecordRef now i wanted to display the added contact ABPersonViewController is the method but how to use in ...

将音频Clips从Peter改为服务器

我不禁要问,那里是否有任何实例表明从Peit向服务器发送音响。 I m不关心电话或SIP风格的解决办法,只是一个简单的袖珍流程......

• 如何将搜查线重新定位?

我正试图把图像放在搜索条左边。 但是,问题始于这里,搜索条线不能重新布署。

热门标签