我想創建兩個完全相同的應用程序。兩個應用程序的區別在於徽標和名稱(以及聯繫我們頁面)。如何在一個文件中重複單詞並使用它
考慮兩個名字名稱1 & 名稱2,我想在任何地方使用它們。讓我們來說下面是我有的文字。
Welcome to name_here
name_here is founded in 1987. name_here is blah blah.. name_here is blah blah...
在這裏,我想分別爲每個應用程序名稱1和名稱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);
就是這樣......由於一噸...
是的,我認爲這將是很好的選擇。 –