Error running IOS 14.1 from Xcode 12.1
Run same code iOS 13.7 from Xcode 11.7. no error.
What is the problem?
Run same code iOS 13.7 from Xcode 11.7. no error.
What is the problem?
Code Block NSURLSession *theConnection=[NSURLSession sessionWithConfiguration: [NSURLSessionConfiguration defaultSessionConfiguration] delegate:self delegateQueue:nil]; NSMutableURLRequest *theRequest= [[NSMutableURLRequest alloc] initWithURL:[NSURL URLWithString: --- website here ---- ]]; NSURLSessionDataTask *task= [theConnection dataTaskWithRequest:theRequest]; [task resume];