You can write this code in viewWillAppear:
UIApplication.shared.setStatusBarHidden(true, with: .slide)
And if you don’t want to hide status bar for other views then you should hide in viewWillDisappear:
UIApplication.shared.setStatusBarHidden(false, with: .slide)