网络超时的写法
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防超时写法)