如何给出plist的路径名?

时间:2011-12-12 07:36:08

标签: iphone cocos2d-iphone

实际上,如果我将plist添加到资源文件夹,它就有效。但是,如果我创建一个文件夹并将plist添加到该文件夹​​,则它不起作用 有谁能够帮我?我对cocos 2d全新,也是plist。

2 个答案:

答案 0 :(得分:0)

获取资源路径后添加文件夹名称。

答案 1 :(得分:0)

使用此:

    NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES); 

NSString *documentsDirectory = [paths objectAtIndex:0]; 

plistpath = [[NSString alloc] initWithString:[documentsDirectory stringByAppendingPathComponent:@"Product.plist"]];

然后

[array writeToFile:path atomically:YES]; 

[Whatever [Array or Dictionary] you want to Write in Plist]

并从Plist中获取数据

NSmutableArray *Yourarray = [[NSMutableArray alloc] initWithContentsOfFile:plistpath];