0

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

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

4

2 回答 2

3
NSString *pathToFile = [[NSBundle mainBundle] pathForResource:@"myList" ofType:@"plist"];
NSDictionary *dict = [NSDictionary dictionaryWithContentsOfFile:pathToFile];
于 2012-10-25T13:00:27.267 回答
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]; 
于 2012-10-25T13:00:12.557 回答