Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
由于某种原因,下面的代码在 iOS6 中执行了两次。我对较低版本的 iOS 没有任何问题。如果我运行我的应用程序的精简版,输出是
Lite Version Lite Version
知道如何解决这个问题..
谢谢..
#ifdef LITE_VERSION NSLog(@"Lite Version"); #else NSLog(@"Pro Version"); #endif