Xcode 8, iOS 10 - "Starting Webfilter Logging for Process"

Xcode 8, iOS 10 - Starting WebFilter logging for process

According to Apple, the "Content Security Policy(CSP)" which support in Safari 10 has been enhanced by including version 2.0 of the standard. It seems that this feature includes in iOS 10 as well.

For more information please look here about the CSP levels: https://content-security-policy.com

OR

Check the site with Chrome Developer Tools and you will find most likely a warning like Mixed Content: The page at '...' as loaded over HTTPS, but requested an insecure resource '...'. This content should also be served over HTTPS.


And If you want to remove the message on the XCode's console then, please find the below steps.

  1. Select Product => Scheme => Edit Scheme or use shortcut : CMD + <
  2. Select the Run option from left side.
  3. On Environment Variables section, add the variable OS_ACTIVITY_MODE = disable

For more information please find the below GIF representation.

GIF

Note : While debug the code in device, please unchecked this option as the NSLog statement do not show in the console.

iOS 10 Starting WebFilter logging for process + Proxy-Authorization header removed from request

Check the site with Chrome Developer Tools and you will most likely find a warning like Mixed Content: The page at '...' as loaded over HTTPS, but requested an insecure resource '...'. This content should also be served over HTTPS.

According to Apple the "Content Security Policy (CSP) support" in Safari 10 "has been enhanced by including version 2.0 of the standard." It seems that this includes iOS 10 as well.

Have a look here about the CSP levels: https://content-security-policy.com

What is the equivalent method in iOS for setImageNamed

watchChoice.image = UIImage(named: options[randomNumber])


Related Topics



Leave a reply



Submit