在字符串文件中存储键/值对

时间:2012-03-20 22:55:10

标签: iphone objective-c ios

目前我存储字符串的方式是使用Localizable.strings, 例如

英文:

"URL" = "http://google.com";

西班牙语:

"URL" = "http://google.com";

正如您所看到的,我对两种语言都有相同的字符串,有没有一种方法可以使用类似于localizable.strings的东西(自动加载,与任何语言/本地化兼容),而不必写入相同的键/值两个文件?然后使用方法检索值? (NSGetstring(“URL”))

1 个答案:

答案 0 :(得分:2)

也许您可以将键/值对存储在plist中并将其读入代码中。像这样:

NSString *path = [[NSBundle mainBundle] bundlePath];
NSString *finalPath = [path stringByAppendingPathComponent:@"myList.plist"];
plistDictionary = [[NSDictionary dictionaryWithContentsOfFile:finalPath] retain];

只需将您的信息存储在plist中,然后像访问任何其他dicitonary项一样访问它:

NSLog(@"URL: %@", [plistDictionary objectForKey:@"URL"]);