最近运行APP,发现了这个问题,本着宁肯错看,不可放过的原则,上stackoverFlow学习了一下:ios
连接:http://stackoverflow.com/questions/38458170/ios-10-app-if-were-in-the-real-pre-commit-handler-we-cant-actually-add-anyxcode
----- “[App] if we're in the real pre-commit handler we can't actually add any new fences due ”app
翻译:框架
-----“[应用]若是咱们在真实预提交处理咱们不能添加任何新的围栏,因为CA限购”学习
才知道这个问题实际上是xcode 编译器设置的问题,其实并不影响app使用:this
"-------it comes from +[UIWindow _synchronizeDrawingAcrossProcessesOverPort:withPreCommitHandler:] via os_log API. It doesn't depend from another components/frameworks that you are using(only from UIKit) - it reproduces in clean single view application project on changing interface orientation.
This method consists from 2 parts:
adding passed precommit handler to list of handlers;
do some work, that depends on current finite state machine state.
When second part fails (looks like prohibited transition), it prints message above to error log. However, I think that this problem is not fatal: there are 2 additional assert cases in this method, that will lead to crash in debug.---".net
翻译:翻译
----它来自+ [ UIWindow _synchronizedrawingacrossprocessesoverport:withprecommithandler:]经过os_log API。它不取决于另外一个组件/框架,您使用的是(从UIKit)-再现清洁单视图应用程序项目改变界面取向。
该方法由2部分组成:
并经过预提交处理程序处理程序列表;
作一些工做,这取决于当前的有限状态机状态。
当第二部分失败(看起来像被禁止的过渡)时,它将上面的消息打印到错误日志上。然而,我认为这个问题不是致命的:有2个额外的断言在这种方法的状况下,这将致使崩溃在调试debug
----------------------------华丽的分割线-------------------------------------调试
解决方法:
in your Xcode:
其实这好像是老版xcode 的,
其实点击Xcode的product就能够找到(OS_ACTIVITY_MODE是name,disable 是值)
(特别注意:标注为disable失效后,程序可能会运行失败!)
感谢分享, 本人到没有遇到过。 你们遇到的能够借鉴这个 原文 http://blog.csdn.net/ws1836300/article/details/52957056