Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何使用 ASIHTTPRequest 设置会话超时?
谢谢
您可以使用以下命令设置 ASIHttpRequest 的默认超时:
[ASIHTTPRequest setDefaultTimeOutSeconds:20];
那是你要找的吗?
给定一个 ASIHttpRequest 实例,您可以使用
asiRequest.timeOutSeconds = 20;
如果您只想更改一个请求的默认超时,这很有用。