我正在嘗試爲NSMutableURLRequest設置超時值,並且在調試時檢查了它不工作。谷歌搜索了10分鐘,我得到的信息,默認超時值是240。以下是這,我使用的是現在的代碼,我想我缺少的地方,我想知道如何使用這個太[_nsmURLRequest initWithURL:nsURL cachePolicy:NSURLRequestUseProtocolCachePolicy timeoutInterval:120];
設置超時值的NSMutableURLRequest設置NSMutableURLRequest的超時值
NSURL *url = [[NSURL alloc] initWithString:fURL];
_urlRequest = [[NSMutableURLRequest alloc] url];
[_urlRequest setHTTPMethod:@"GET"];
[_urlRequest setTimeoutInterval:120];
NSURLConnection* _urlConnection = [[NSURLConnection alloc] initWithRequest:_urlRequest delegate: self];
我都試過了。它不工作。任何幫助將感激
看看它可以幫助http://stackoverflow.com/questions/1466389/nsmutableurlrequest-timeout-interval-not-taken-into-consideration-for-post -reque/27962981#27962981 –