Xcode 8,iOS 10 – “启动WebFilterlogin进程”
WF: === Starting WebFilter logging for process Test 2016-09-30 08:56:45.458007 Test[616:142557] WF: _userSettingsForUser mobile: { filterBlacklist = ( ); filterWhitelist = ( ); restrictWeb = 1; useContentFilter = 0; useContentFilterOverrides = 0; whitelistEnabled = 0; } 2016-09-30 08:56:45.458437 Test[616:142557] WF: _WebFilterIsActive returning: NO
我在使用UIWebView委托方法加载内容的xcode 8,iOS-10的debugging器中收到此警告。 我没有在苹果网站find关于这个网页filter活跃/非活动模式的任何文件。 虽然它不会导致我现有的webViewfunction有任何问题,即使我运行一些JavaScript函数在我的webView做完成的方法。 但仍然很想知道更多关于这个新function的信息。
任何有关此function的build议将不胜感激。
根据苹果公司的说法,在Safari 10中支持的“内容安全策略(CSP)”已经包含了2.0版本的标准。 这个function似乎也包含在iOS 10
中。
欲了解更多信息,请看这里关于CSP级别: https : //content-security-policy.com
要么
使用Chrome开发人员工具检查网站,您会发现最有可能的Mixed Content: The page at '...' as loaded over HTTPS, but requested an insecure resource '...'. This content should also be served over HTTPS.
警告Mixed Content: The page at '...' as loaded over HTTPS, but requested an insecure resource '...'. This content should also be served over HTTPS.
Mixed Content: The page at '...' as loaded over HTTPS, but requested an insecure resource '...'. This content should also be served over HTTPS.
如果您想要删除XCode控制台上的消息,请find以下步骤。
- selectProduct => Scheme => Edit Scheme或使用快捷键:
CMD + <
- 从左侧select
Run
选项。 - 在环境variables部分,添加variablesOS_ACTIVITY_MODE = disable
欲了解更多信息,请find下面的GIF表示。
可能是打印系统日志。 检查一次,试试这个
1-从Xcode菜单打开:产品>scheme>编辑scheme
2-在您的环境variables上设置OS_ACTIVITY_MODE
= disable