Iphone – ASIHTTPRequest set timeout

asihttprequestiphone

How can I set the session timeout using ASIHTTPRequest ?

Thanks

Best Answer

You can set the default timeout for ASIHttpRequest by using:

    [ASIHTTPRequest setDefaultTimeOutSeconds:20];

Is that what your looking for?

Related Topic