- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个 Xcode 应用程序,我正在更新到最新的 iOS。我现在注意到在构建时出现以下错误/警告:
/ConfViewController.m:198:46: 'sendSynchronousRequest:returningResponse:error:' 已弃用:首先在 iOS 9.0 中弃用 - 使用 [NSURLSession dataTaskWithRequest:completionHandler:](参见 NSURLSession.h
根据我所阅读的内容,我应该开始使用“NSURLSession”,但我如何在我的代码中使用“NSURLSession”,或者我是否看错了?
我的代码:
NSString *deviceName = [[UIDevice currentDevice]name];
NSString *post =[[NSString alloc] initWithFormat:@"devicename=%@",deviceName];
NSLog(@"PostData: %@",post);
NSURL *url=[NSURL URLWithString:@"http://www.mydomain/sysscripts/conf/devicelookup17.php"];
NSData *postData = [post dataUsingEncoding:NSASCIIStringEncoding allowLossyConversion:YES];
NSString *postLength = [NSString stringWithFormat:@"%lu", (unsigned long)[postData length]];
NSMutableURLRequest *request = [[NSMutableURLRequest alloc] init];
[request setURL:url];
[request setHTTPMethod:@"POST"];
[request setValue:postLength forHTTPHeaderField:@"Content-Length"];
[request setValue:@"application/json" forHTTPHeaderField:@"Accept"];
[request setValue:@"application/x-www-form-urlencoded" forHTTPHeaderField:@"Content-Type"];
[request setHTTPBody:postData];
NSError *error = [[NSError alloc] init];
NSHTTPURLResponse *response = nil;
//The ERROR point
NSData *urlData=[NSURLConnection sendSynchronousRequest:request returningResponse:&response error:&error];
//NSLog(@"Response code: %ld", (long)[response statusCode]);
if ([response statusCode] >=200 && [response statusCode] <300)
{
NSString *responseData = [[NSString alloc]initWithData:urlData encoding:NSUTF8StringEncoding];
NSLog(@"Response ==> %@", responseData);
SBJsonParser *jsonParser = [SBJsonParser new];
NSDictionary *jsonData = (NSDictionary *) [jsonParser objectWithString:responseData error:nil];
// NSLog(@"%@",jsonData);
// NSInteger success = [(NSNumber *) [jsonData objectForKey:@"success"] integerValue];
NSInteger roomid = [(NSNumber *) [jsonData objectForKey:@"roomid"] integerValue];
// NSLog(@"%ld",(long)success);
//NSLog(@"%ld",(long)roomid);
NSString *RoomID = [NSString stringWithFormat:@"%ld",(long)roomid];
// NSLog(@"%@", RoomID);
NSString *firstString = @"http://www.mydomain/apps/conf/lon/dt/devices/ /template17.php";
// NSLog(@"%@", firstString);
NSString *roomID = RoomID;
// NSLog(@"%@", roomID);
NSString *newString = [firstString stringByReplacingOccurrencesOfString:@" " withString:roomID];
// NSLog(@"%@", newString);
NSURL *url2 = [NSURL URLWithString: newString];
NSLog(@"%@", url2);
NSURLRequest *request2 = [NSURLRequest requestWithURL:url2];
// ConfViewController *navex =[[ConfViewController alloc] initWithNibName:nil bundle:nil];
//[self presentViewController:navex animated:YES completion:NULL];
[webView loadRequest:request2];
}
非常感谢您的宝贵时间。
最佳答案
替换
NSData *urlData = [NSURLConnection sendSynchronousRequest:request returningResponse:&response error:&error];
与
[[[NSURLSession sharedSession] dataTaskWithRequest:request completionHandler:^(NSData * data, NSURLResponse * response, NSError * error) {
}] resume];
将整个代码放在完成 block 中的 sendSynchronousRequest
行之后(大括号之间)。
替换
if ([response statusCode] >=200 && [response statusCode] <300)
与
NSHTTPURLResponse *httpResponse = (NSHTTPURLResponse *)response;
NSInteger statusCode = httpResponse.statusCode;
if (statusCode >= 200 && statusCode < 300)
将urlData
替换为data
。
删除
NSError *error = [[NSError alloc] init];
NSHTTPURLResponse *response = nil;
关于ios - 发送同步请求 :returningResponse deprecated,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43654098/
我有一个 Xcode 应用程序,我正在更新到最新的 iOS。我现在注意到在构建时出现以下错误/警告: /ConfViewController.m:198:46: 'sendSynchronousReq
这个问题已经有答案了: Fixing NSURLConnection Deprecation from Swift 1.2 to 2.0 (1 个回答) 已关闭 7 年前。 我现在应该用什么来代替 N
我创建了一个NSURLConnection和NSURLSession类别来进行细化,因此我将在运行时拦截 call 并收集网络信息。 除了当我使用NSURLConnection的静态类方法时,大多数情
我们可以通过下面的代码轻松获取简单的网页内容: + (NSString *)getContentWithURL:(NSString *)urlString { NSURL *url = [NS
我想从 WatchOS 上的 API 获取数据,因为我使用 NSURLConnection 但我得到错误 is not available in WatchOS2,在这里我添加了我使用的代码,请查看并
我正在尝试从 iPhone 上的同步 HTTP 请求中提取 HTTP header 和 HTTP 响应代码。我通常在使用异步请求时不会遇到任何问题,尽管这里有点麻烦。 HTTP 响应 header 为
它说 use [NSURLSession sharedsession] dataTaskwithRequest:request completionHandler:] 这里是我的代码: NSData
我使用 NSURLConnection 的 sendSynchronousRequest:returningResponse:error: 方法(在单独的 NSOperation 线程中)连接到外部服
-(NSArray *)deviceCheck:(NSString *)device { NSString *deviceRequestString = [NSString s
我是一名优秀的程序员,十分优秀!