我将需要这样做:
#ifdef paid ... #else ... #endif
在这个字段中,添加标志在ex. PAID_VERSION.现在你可以在代码中使用这个标志:
#ifdef PAID_VERSION NSLog(@"Paid version"); #else NSLog(@"Lite version"); #endif