У меня есть код ниже, где я скрываю строку состояния, но я хочу иметь возможность отображать строку состояния, когда пользователь решает записать экран. Как я смогу это сделать?
Edit : I added the isCaptured property in a if statement but
when the screen recording is happening the status bar comes back
white and doesnt show the red bar for some reason. Anyone know why?
override var prefersStatusBarHidden: Bool {
if UIScreen.main.isCaptured == true {
print("show status bar")
return false
} else {
print("hide status bar")
return true
}