Http呼び出しを行うための独自のクラスがありますが、iOS9ではこのメソッドは非推奨になりました。
[NSURLConnetion sendAsynchronousRequest:queue:completionHandler:]
新しいものをテストしようとしています[NSURLSession dataTaskWithRequest:completionHandler:]
しかし、Xcodeはこのメソッドを見つけられないため、エラーを出します。
非推奨の行を含むXcodeコンパイラの警告:
'sendAsynchronousRequest:queue:completionHandler:' is deprecated: first deprecated in iOS 9.0 - Use [NSURLSession dataTaskWithRequest:completionHandler:] (see NSURLSession.h
新しいメソッドのエラー:
No known class method for selector 'dataTaskWithRequest:completionHandler:'
方法:
-(void)placeGetRequest:(NSString *)action withHandler:(void (^)(NSURLResponse *response, NSData *data, NSError *error))ourBlock {
NSString *url = [NSString stringWithFormat:@"%@/%@", URL_API, action];
NSURL *urlUsers = [NSURL URLWithString:url];
NSURLRequest *request = [NSURLRequest requestWithURL:urlUsers];
//[NSURLConnection sendAsynchronousRequest:request queue:[NSOperationQueue mainQueue] completionHandler:ourBlock];
[NSURLSession dataTaskWithRequest:request completionHandler:ourBlock];
}
何か案が?
dataTaskWithRequest:completionHandler:
はインスタンスメソッドであり、クラスメソッドではありません。新しいセッションを構成するか、共有セッションを使用する必要があります。
[[NSURLSession sharedSession] dataTaskWithRequest:request completionHandler:ourBlock];
[[NSURLSession sharedSession] dataTaskWithRequest:request completionHandler:^(NSData *data,NSURLResponse *response,NSError *error)
{
// Block Body
}];
AFNetworkingライブラリを使用している場合は、セッションを使用してから、バックグラウンドでリクエストをサポートするように設定できます。このアプローチを使用して、2つの問題を解決しました。
1)AFNetworkingメソッドは非推奨ではありません
2)状態のバックグラウンド間のアプリケーションであっても、リクエスト処理は実行されます
同様の問題に役立つことを願っています。これは代替手段です。
-(void) pingSomeWebSite {
NSString* url = URL_WEBSITE; // defines your URL to PING
NSMutableURLRequest *request = [[NSMutableURLRequest alloc] init];
[request setHTTPMethod:@"GET"];
[request setURL:[NSURL URLWithString:url]];
request.timeoutInterval = DEFAULT_TIMEOUT; // defines your time in seconds
NSTimeInterval today = [[NSDate date] timeIntervalSince1970];
NSString *identifier = [NSString stringWithFormat:@"%f", today];
NSURLSessionConfiguration *sessionConfig = [NSURLSessionConfiguration backgroundSessionConfigurationWithIdentifier:identifier];
sessionConfig.timeoutIntervalForResource = DEFAULT_TIMEOUT_INTERVAL; // interval max to background
__block AFURLSessionManager *manager = [[AFURLSessionManager alloc]
initWithSessionConfiguration:
sessionConfig];
NSURLSessionTask *checkTask = [manager dataTaskWithRequest:request
completionHandler:^(NSURLResponse *response, id responseObject, NSError *error) {
NSLog(@"- Ping to - %@", URL_WEBSITE);
NSHTTPURLResponse* httpResponse = (NSHTTPURLResponse*)response;
dispatch_async(dispatch_get_main_queue(), ^(){
[manager invalidateSessionCancelingTasks:YES];
// LOGIC FOR RESPONSE CODE HERE
});
}];
[checkTask resume];
}
let task = NSURLSession.sharedSession().dataTaskWithRequest(request){ data, response, error in
// Code
}
task.resume()