我是这个领域的新手。那么,任何人都可以解释如何以编程方式使用plist吗?从哪里可以开始,以便我能够正确地学习它?
答案 0 :(得分:-1)
您可以像访问NSDictionary一样访问plist。 Plist以关键值格式提供数据。
- 您可以添加自己的plist文件并以这种方式使用plist。
NSString *path = [[NSBundle mainBundle] pathForResource: @"plistname" ofType:@"plist"];
NSDictionary *dict = [NSDictionary dictionaryWithContentsOfFile: path];
NSString *temp = [dict objectForKey:[NSString stringWithFormat:@"%@-Your key name",key]];