Reputation: 2127
Can you share your answer to me for
NSURLRequest
default timeoutInterval
timeNSMutableURLRequest
default timeoutInterval
timeUpvotes: 13
Views: 20777
Reputation: 4051
For reference, the default timeout interval is defined within the header file for NSURLRequest
, by the side of +requestWithURL:
It explicitly says it's 60 seconds.
Upvotes: 1
Reputation: 161
The default cache policy is
NSURLRequestUseProtocolCachePolicy
and the default timeout interval is 60 seconds.
Upvotes: 16
Reputation: 2127
For both NSURLRequest & NSMutableURLRequest default timeoutInterval time is 60 secs
Upvotes: 20