ViewDidAppear 动画 false
ViewDidAppear animation false
我想在 viewDidAppear 中禁用动画。我已经设置了下面的代码,但它显示了这个错误:
"cannot assign to value: 'animated' is a 'let' constant"
override func viewDidAppear(_ animated: Bool) {
super.viewDidAppear(animated = false)
}
您正在尝试为 animated
参数赋值,而参数是 let
常量,因此出现错误。
如果您只想将 false
传递给 super.viewDidAppear
,则只需传递 false
:
super.viewDidAppear(false)
无需尝试为原始值赋值 animated
属性。
我想在 viewDidAppear 中禁用动画。我已经设置了下面的代码,但它显示了这个错误:
"cannot assign to value: 'animated' is a 'let' constant"
override func viewDidAppear(_ animated: Bool) {
super.viewDidAppear(animated = false)
}
您正在尝试为 animated
参数赋值,而参数是 let
常量,因此出现错误。
如果您只想将 false
传递给 super.viewDidAppear
,则只需传递 false
:
super.viewDidAppear(false)
无需尝试为原始值赋值 animated
属性。