我的应用程序工作得非常好,突然之间我现在也开始使用iOS 8和以前的操作系统崩溃了。
崩溃日志如下所示:
iPhone kernel[0] <Notice>: xpcproxy[566] Container: /private/var/mobile/Containers/Data/Application/xxxxxx-xxxx-xxxxx-xxxxxxxx (sandbox)
iPhone ReportCrash[567] <Error>: task_set_exception_ports(B07, 400, D03, 0, 0) failed with error (4: (os/kern) invalid argument)
iPhone ReportCrash[567] <Notice>: ReportCrash acting against PID 566
iPhone ReportCrash[567] <Notice>: Formulating crash report for process app_name[566]
iPhone locationd[63] <Notice>: Gesture EnabledForTopCLient: 0, EnabledInDaemonSettings: 0
iPhone com.apple.xpc.launchd[1] (UIKitApplication:com.xxxxx[0xc36c][566]) <Notice>: Service exited due to signal: Trace/BPT trap: 5
iPhone SpringBoard[43] <Warning>: Application 'UIKitApplication:com.xxxxx[0xc36c]' crashed.
iPhone assertiond[57] <Warning>: Could not set priority of <BKNewProcess: 0x16624ab0; com.xxxxx; pid: 566> to 2, priority: No such process
iPhone assertiond[57] <Warning>: Could not set priority of <BKNewProcess: 0x16624ab0; com.xxxxx; pid: 566> to 4096, priority: No such process
我已经想知道这个问题,但没有得到任何确切的解决方案。 请帮助我,因为我需要尽快解决这个问题。 任何帮助都一定会受到欢迎。
提前致谢。!! ..
答案 0 :(得分:1)
我遇到了类似的问题。
iPhone ReportCrash [567]:task_set_exception_ports(B07,400,D03,0,0)失败并显示错误(4:(os / kern)无效参数)
我试过这个来解决我的问题而且工作正常。
转到项目&gt; 构建设置&gt;按 Swift编译器&gt;进行搜索在优化级别&gt;将Debug和Release设置为无[-Onone]
祝你好运。答案 1 :(得分:0)
我在下面的场景中遇到了这个崩溃 - 主故事板场景中有一个标签,它的参考位于一个视图控制器中。但是在View控制器类中,没有创建UILable,但是在故事板中,我试图将它与UILable连接(没有正确连接)..
通过解决上述问题得到解决..