BCurrency-Alfred-Workflow icon indicating copy to clipboard operation
BCurrency-Alfred-Workflow copied to clipboard

How to replace 'sendSynchronousRequest:returningResponse:error:' to fix the warning

Open nssurge opened this issue 6 years ago • 0 comments

gcc main.m -ObjC -framework Foundation -o main

main.m:34:37: warning: 'sendSynchronousRequest:returningResponse:error:' is deprecated: first deprecated in macOS 10.11 - Use [NSURLSession dataTaskWithRequest:completionHandler:] (see NSURLSession.h [-Wdeprecated-declarations] data = [NSURLConnection sendSynchronousRequest:[NSURLRequest requestWithURL:url] returningResponse:&response error:&error]; ^ /System/Library/Frameworks/Foundation.framework/Headers/NSURLConnection.h:401:1: note: 'sendSynchronousRequest:returningResponse:error:' has been explicitly marked deprecated here

  • (nullable NSData *)sendSynchronousRequest:(NSURLRequest *)request returningResponse:(NSURLResponse * _Nullable * _Nullable)response e... ^ 1 warning generated.

nssurge avatar Jun 02 '18 02:06 nssurge