网络超时的写法

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了网络超时的写法相关的知识,希望对你有一定的参考价值。

网络超时的写法

by 伍雪颖

NSHTTPURLResponse *response = nil;
NSError *error = nil;
NSMutableURLRequest *request = [[NSMutableURLRequest alloc] initWithURL:[NSURL URLWithString:url]];
request.timeoutInterval = 15;
request.HTTPMethod = @"POST";
NSData *respData = [NSURLConnection sendSynchronousRequest:request returningResponse:&response error:&error];
if (error) {
    NSLog(@"error");
    [ZAActivityBar showErrorWithStatus:@"Network unavailabel! Please try again!"];
}


以上是关于网络超时的写法的主要内容,如果未能解决你的问题,请参考以下文章

POJ--3321(dfs序+树状数组+vector防超时写法)

没想到,错误的单例写法,让 RabbitMQ 大量超时导致程序挂死!

网络超时啥意思?

网络出现连接超时怎么解决?

网络请求超时是啥意思?

为啥我登陆的时候老是显示网络连接超时?