由于网站 如果我能拿到<条码>NSURLRequest,那么我就试图使用<条码>NStimer,以检查我是否在指定期限内收到答复。 如果我有点,那么我想取消这一请求,并向用户发出警告。
然而,我无法找到一种办法,取消在
你们怎样做?
我提出了以下要求:
NSString *theURL = [NSString stringWithFormat:@"https://%@%@", _hostname, LOGIN_PART_URL];
NSString *body = [NSString stringWithFormat:@"Username=%@&Password=%@", _username, _password];
NSMutableURLRequest *request = [[NSMutableURLRequest alloc]initWithURL:[NSURL URLWithString:theURL]
cachePolicy:NSURLRequestUseProtocolCachePolicy
timeoutInterval:_timeoutInSecs];
[request setHTTPMethod: @"POST"];
[request setHTTPBody: [body dataUsingEncoding: NSUTF8StringEncoding]];
[web loadRequest:request];
我可以看到,UIWebView
似乎没有等值。
我失踪了什么?
Thanks! Stretch :)