我有一个自定义图像,我将其设置为视图上的标志。旋转时,我调用一个函数来更改此图像的前导约束。旋转设备时,以下代码会崩溃。
这是什么原因以及如何解决?
@IBOutlet weak var badgeLeadingConstraints: NSLayoutConstraint!
override func viewWillTransition(to size: CGSize, with coordinator: UIViewControllerTransitionCoordinator) {
super.viewWillTransition(to: size, with: coordinator)
coordinator.animate(alongsideTransition: { context in
// This is called during the animation
}, completion: { context in
self.updateBadgeConstraints()
})
}
func updateBadgeConstraints() {
// Crash on following line
// Thread 1: Fatal error: Unexpectedly found nil while unwrapping an Optional value
self.badgeLeadingConstraints.constant = (UIScreen.main.bounds.size.width / 4) + 34
}
答案 0 :(得分:0)
您的badgeLeadingConstraints
是nil
。也许在设备旋转后它变成nil
。尝试使用大小类或仅创建新的约束。