我在我的iOS項目中有url
變量,我希望它指向http://localhost:3000/api
當我在DEBUG模式下構建項目時,但是當我爲RELEASE構建項目時,我想url
變量指向http://example.com/api
如何使用兩個相同名稱的變量
所以對於我已經勾勒出以下
#ifdef DEBUG
// want to use this variable on DEBUG build
NSURL *url = [NSURL URLWithString:@"http://localhost:3000/api/"];
#endif
// want to use this variable on RELEASE build
NSURL *url = [NSURL URLWithString:@"http://example.com/api/"];
但Xcode的抱怨,我已經聲明瞭一個url
變量。