访问.plist值

时间:2012-10-25 12:56:33

标签: iphone ios xcode ios5 ios6

我正在构建一个具有pickerview的应用程序,因此,我创建了一个.plist文件来创建键和值。唯一的问题是我希望能够访问.plist值。问题是,值是名称字符串,当在选择器视图中选择时,我想创建一个if语句,我称之为移动号码。如果可能的话,我需要有关访问值的指南

关于如何进行此操作的任何想法?

2 个答案:

答案 0 :(得分:3)

NSString *pathToFile = [[NSBundle mainBundle] pathForResource:@"myList" ofType:@"plist"];
NSDictionary *dict = [NSDictionary dictionaryWithContentsOfFile:pathToFile];

答案 1 :(得分:2)

 NSString *path = [[NSBundle mainBundle] pathForResource:  // here data is file nale of plist
                    @"data" ofType:@"plist"];
    // Build the dictionary from the plist  
    NSDictionary *dictionary = [[NSDictionary alloc] initWithContentsOfFile:path];