有时,当我在Mac上的MS Word(Word版本15.34)中启动加载项时,在任务窗格本身中多次移动鼠标后,加载项会崩溃(有时会发生在悬停,滚动或有时在点击)。
我发现this page列出了存储日志的目录(〜/ Library / Containers / com.microsoft.Word / Data / Library / Caches / Microsoft / uls / com.microsoft.Word /)。
检查日志文件后,我发现同一行中有30条(粘贴在下面)。 func restartApplication () {
let navCtrl = UIStoryboard(name: "Main", bundle: nil).instantiateViewControllerWithIdentifier("NavController")
guard
let window = UIApplication.shared.keyWindow,
let rootViewController = window.rootViewController
else {
return
}
navCtrl.view.frame = rootViewController.view.frame
navCtrl.view.layoutIfNeeded()
UIView.transition(with: window, duration: 0.3, options: .transitionCrossDissolve, animations: {
window.rootViewController = navCtrl
})
}
是什么意思,我该如何解决?这种崩溃似乎仅发生在Mac版Word中,特别是仅在我的机器上发生(我要求其他人无法重现它)。
"ErrorCode": 0x-2147208704
答案 0 :(得分:1)
将Word更新到版本16.16.3修复了此问题。谢谢@RichMichaels!