You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
After reading all the issues I concluded that my issue is related to the issues #71#77#78 . I'm using autolayout so it might be connected to that. I've found a solution, which is to move the line that fixes the status bar from the viewDidDisappear to the viewWillDisappear. Also, I think a better way is to add an animation so that it all goes smoothly. Code below:
public override func viewWillAppear(animated: Bool) {
super.viewWillAppear(animated)
After reading all the issues I concluded that my issue is related to the issues #71 #77 #78 . I'm using autolayout so it might be connected to that. I've found a solution, which is to move the line that fixes the status bar from the viewDidDisappear to the viewWillDisappear. Also, I think a better way is to add an animation so that it all goes smoothly. Code below:
public override func viewWillAppear(animated: Bool) {
super.viewWillAppear(animated)
}
public override func viewWillDisappear(animated: Bool) {
}
Just a suggestion.
Cheers
The text was updated successfully, but these errors were encountered: