I wanted to disable animated in viewDidAppear. I've set the code below but it shows me this error:
"cannot assign to value: 'animated' is a 'let' constant"
override func viewDidAppear(_ animated: Bool) {
super.viewDidAppear(animated = false)
}