Alert”Developer tools access needs to take control of another process for debugging to continue.Type your password to allow this.”

The first time you launched XCode, it probably asked you if you wanted to enable Developer Mode on this mac. If you accepted, then it asked you for your password, and you stopped getting this kind of warning. Chances are good that you declined, and now it has to explicitly ask you for permission every … Read more

Download Xcode simulator directly

Clicking on Download in Xcode didn’t do anything – the progress bar did not progress (does that make it a regress bar?). This is what worked for me: Open Xcode, open preferences, go to the Components section. Open the Console App, clear the console. Go back to the Xcode preferences. Start the simulator download, then … Read more

CFNetwork SSLHandshake failed (-9824) NSURLSession/NSURLConnection HTTP load failed (kCFStreamErrorDomainSSL, -9824)

From NSURLConnection to NSURLSession worked for me I was able to solve as following( NSURLConnection is deprecated and you need to use NSURLSession) : converted to: From NSURLConnection to NSURLSession Also included in Info.plist see documentation: Info.plist reference And ultimately Announcement: CFNetwork SSLHandshake failed (-9824) while integrating Login with Amazon SDK for iOS Back to … Read more