标签:style blog http io color os sp strong div
问题:
NSString *urlAsString = @"http://www.apple.com"; NSURL *url = [NSURL URLWithString:urlAsString]; NSMutableURLRequest *urlRequest = [NSMutableURLRequest requestWithURL:url];
[urlRequest setTimeoutInterval:30.0f];
NSString *urlAsString = @"http://www.apple.com"; NSURL *url = [NSURL URLWithString:urlAsString];
NSMutableURLRequest *urlRequest = [NSMutableURLRequest new];
[urlRequest setTimeoutInterval:30.0f]; [urlRequest setURL:url];
iOS网络: 通过NSMutableURLRequest修改一个URL的请求
标签:style blog http io color os sp strong div
原文地址:http://www.cnblogs.com/safiri/p/4089103.html