iPhone Dev - 从 Plist 编辑数组中的对象 [英] iPhone Dev - Edit objects in Array from Plist

查看:18
本文介绍了iPhone Dev - 从 Plist 编辑数组中的对象的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有一个 Plist,其中有许多 Array.在这些数组中是我正在读取的不同对象,但是我在编辑数组中的这些对象然后再次将数组保存回 Plist 文件时陷入困境.

I have a Plist in which I have a number of Array's. Within these arrays are different objects that I'm reading, I've become stuck however on editing these objects in the array and then saving the array back to the Plist file again.

我已经像这样读取文件了...

I'm already reading the file like so...

Array = [myArrays objectAtIndex:arrayCounter]; //This tells it which Array to load.

myObject = [Array objectAtIndex:0]; //This reads that object in the array. (This is what I want to edit.)

我想知道如何编辑该对象(它是一个字符串),然后将其保存回数组中,然后将该数组保存回存储它的 Plist 文件中.

I was wondering how I would go about editing that object (it's a string) and then saving it back into the array and then saving that array back into the Plist file where it is stored.

提前致谢!

P.S - 如果需要,我愿意发布更多代码或信息.

P.S - I'm willing to post more code or information if required.

推荐答案

你不能将数据保存在应用程序的主包中,而必须像这样在文档目录中进行:

You cannot save data in application's main bundle instead you have to do in document directory like this:

 NSArray *paths=NSSearchPathForDirectoriesInDomains(NSDocumentDirectory,NSUserDomainMask, YES);
NSString *documentsDirectory = [paths objectAtIndex:0];
NSString *plistFilePath = [documentsDirectory stringByAppendingPathComponent:@"Data.plist"];

if([[NSFileManager defaultManager] fileExistsAtPAth:plistFilePath]) 
{//plist already exits in doc dir so save content in it

 NSMutableArray *data = [NSMutableArray arrayWithContentsOfFile:plistFilePath];
 NSArray *arrValue = [data objectAtIndex:arrayCounter];

 NSString *strValue = [arrValue objectAtIndex:0];
 strValue = [strValue stringByAppending:@"hello"]; //change your value here

 [[data objectAtIndex:arrayCounter] replaceObjectAtIndex:0 withObject:strValue]; //value replaced
 [data writeToFile:plistFilePath atomically:YES];
}
else{ //firstly take content from plist and then write file document directory. it will be executed only once

 NSString *plistPath = [[NSBundle mainBundle] pathForResource:@"Data" ofType:@"plist"];
 NSMutableArray *data = [NSMutableArray arrayWithContentsOfFile:plistPath];
 NSArray *arrValue = [data objectAtIndex:arrayCounter];

 NSString *strValue = [arrValue objectAtIndex:0];
 strValue = [strValue stringByAppending:@"hello"]; //change your value here

 [[data objectAtIndex:arrayCounter] replaceObjectAtIndex:0 withObject:strValue]; //value replaced
 [data writeToFile:plistFilePath atomically:YES];

}

这篇关于iPhone Dev - 从 Plist 编辑数组中的对象的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆