我想做两个相同的应用程序。两个应用程序之间的区别是徽标和名称(以及联系我们页面)。
考虑两个名称是名称 1和名称 2,我想在任何地方使用它们。假设下面是我的文字。
Welcome to name_here
name_here is founded in 1987. name_here is blah blah.. name_here is blah blah...
在这里,我想为每个应用程序分别用 Name 1 和 Name 2 替换 name_here。
知道如何完成这项工作吗?
这就是我所做的。
将 plist 文件创建为“AllInOne.plist”
在 ViewDidLoad 我有
NSString *documentsDirectory = [[NSBundle mainBundle] resourcePath];
NSString *path = [documentsDirectory stringByAppendingPathComponent:@"AllInOne.plist"];
NSMutableDictionary *savedStock = [[NSMutableDictionary alloc] initWithContentsOfFile: path];
NSString *value1;
value1 = [savedStock objectForKey:@"lab_name"];
NSLog(@"text is ==== %@", value1);
就是这样...非常感谢...