赞
踩
通常会使用宏定义作这样的代码判断
- #ifdef DEBUG
- verifyReceiptURL = [[[NSURL alloc] initWithString:@"https://sandbox.itunes.apple.com/verifyXXXt"] autorelease];
- #else
- verifyReceiptURL = [[[NSURL alloc] initWithString:@"https://buy.itunes.apple.com/verifyXXX"] autorelease];
- #endif
- if (DEBUG) {
- verifyReceiptURL = [[[NSURL alloc] initWithString:@"https://sandbox.itunes.apple.com/verifyReceipt"] autorelease];
- } else {
- verifyReceiptURL = [[[NSURL alloc] initWithStr
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。