Ich versuche eine einfache Animation in Swift zu erstellen. Es ist ein Einblenden.
Ich versuchte:
self.myFirstLabel.alpha = 0
self.myFirstButton.alpha = 0
self.mySecondButton.alpha = 0
Dann habe ich:
self.view.addSubview(myFirstLabel)
self.view.addSubview(myFirstButton)
self.view.addSubview(mySecondButton)
Und dann:
UIView.animateWithDuration(1.5, animations: {
self.myFirstLabel.alpha = 1.0
self.myFirstButton.alpha = 1.0
self.mySecondButton.alpha = 1.0
})
Ich habe all dies in meiner viewDidLoad-Funktion.
Wie mache ich das?