如何从Apps的plist中读取plist

时间:2012-10-22 14:45:47

标签: iphone sdk

有人可以建议我如何从应用程序的plist文件中读取plist文件。

由于

1 个答案:

答案 0 :(得分:1)

您可以通过arrayWithContentsOfFile:方法获取它。您需要filePath.plist文件。见下面的例子: -

NSString* plistPath = [[NSBundle mainBundle] pathForResource:@"PlistFileName" ofType:@"plist"];
NSArray *array = [NSArray arrayWithContentsOfFile:plistPath];