我知道有很多与我的问题有关的答案,比如说.
Programmatically rename an XCode project
Renaming xcode 4 project and the actual folder
等等
但请看下面的代码:
NSString *plistPath = @"...../TestingAPI-Info.plist"; NSMutableDictionary *dictionary = [[NSMutableDictionary alloc]initWithContentsOfFile:plistPath]; [dictionary setObject:@"myTestingApp" forKey:@"CFBundleDisplayName"]; [dictionary writeToFile:plistPath atomically:YES];
更改名称“MySuperApp => myTestingApp”
那么,使用上面的代码更改是否有效?我害怕app拒绝?我还想通过上面的代码设置所有更改,如Bundle identifier,Bundle name..etc?
它有效还是没有?通过使用上面的代码苹果拒绝我的应用程序?