How to make a "Pro" version of an Xcode project

I just made an application, and now I plan to make it "pro", so I want to copy the Xcode project and rename it.

I'm just wondering what the easiest way is to do this. Obviously, in the whole project there are many different links to the name, and I do not want to spend a lot of time searching, updating them all.

Please, can you suggest the simplest steps to copy the "Basic application" to the "Pro application"? Or is there a better / preferred method for creating a "pro" version of the application with slight differences?

Thanks in advance!

+5
source share
2 answers

- Xcode. (: APP_VERSION_LITE APP_VERSION_PRO) #ifdef APP_VERSION_PRO ..

//.pch
extern NSSting * const MyAppName

//appdelegate.m
#ifdef APP_VERSION_PRO
NSSting * const MyAppName = @"App Pro";
#else
NSSting * const MyAppName = @"App Lite";
#endif

( ) .

+5

, , , .

, , "" "" , , ..

, ( , lol), !

-2

All Articles