Swift animieren ein Label iShidden
DispatchQueue.main.async {
UIView.transition(with: myLabel, duration: 0.6,
options: .transitionCrossDissolve,
animations: {
myLabel.isHidden = false
})
}
TheKrisinator