我正在使用最新的 SDK 开发 iOS 5.0+ 应用程序。
这段代码出现了一个非常奇怪的错误:
- (NSMutableURLRequest*)setupRequestWithService:(NSString*)service andMethod:(NSString*)method
{
NSString* url = [NSString stringWithFormat:@"%@%@.svc/%@", serverUrl, service, method];
NSMutableURLRequest* request = [[NSMutableURLRequest alloc] initWithURL:[NSURL URLWithString:url]];
// Set authentication token.
NSLog(@"???????????? %@", authenticationToken);
if (authenticationToken == nil)
NSLog(@"NULL AUTHTOKEN");
if ([authenticationToken isEqual:[NSNull null]])
NSLog(@"NSNULL AUTHTOKEN");
if (request == nil)
NSLog(@"NULL REQUEST");
[request addValue:authenticationToken forHTTPHeaderField:REQUEST_HEADER_AUTH_TOKEN];
return request;
}
这是我的日志:
???????????? <null>
NSNULL AUTHTOKEN
-[NSNull length]: unrecognized selector sent to instance 0x3b5a5090
*** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[NSNull length]: unrecognized selector sent to instance 0x3b5a5090'
似乎authenticationToken
是NULL
。但我不明白,如果authenticationToken
是NULL
我NULL AUTHTOKEN
在日志上看不到的原因。
我第二次运行该方法时收到此错误,第一次,我没有收到任何错误。这是我的日志:
???????????? (null)
NULL AUTHTOKEN
顺便一提:
NSString* authenticationToken;
有什么建议吗?
也许有一个Memory Leak
地方...