我是iPhone SDK的新手。现在我正在使用plist文件女巫内容字符串。如何设置文件中第一个元素的值为'plist'到NSString
变量?我在NSArray
中有plist内容:
NSString *countriesList = [[NSBundle mainBundle] pathForResource:@"Countries" ofType:@"plist"];
countries = [[NSArray alloc] initWithContentsOfFile:countriesList];
答案 0 :(得分:1)
NSString *countryName = [countries objectAtIndex:0];