开发者

NSURLConnection didFailWithError not called?

Why, when an image does not exist at a specified URL, does didFailWithError not get calle开发者_如何学Pythond? For example:

NSURLRequest *request = [NSURLRequest requestWithURL:[NSURL URLWithString:@"http://www.google.com/images/someImageIknowDoesntExist.jpg"] 
                     cachePolicy:NSURLRequestReturnCacheDataElseLoad
                             timeoutInterval:10.0];

        urlConnection = [[NSURLConnection alloc] initWithRequest:request delegate:self];

Does not trigger didFailWithError. How can I get notified that there is no image at the url I try to connect to?


The status code in the response will be 404 when you get the connection:didReceieveResponse: method. The error method only gets called if there was an actually error fetching the URL (like the network went down, or the host doesn't exist, etc).

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜