swift ishidden animate code example
Example: swift animate a label ishidden
DispatchQueue.main.async {
UIView.transition(with: myLabel, duration: 0.6,
options: .transitionCrossDissolve,
animations: {
myLabel.isHidden = false
})
}