Aber, okay, dieser Code funktioniert für mich. Ich habe eine Frage. Warum kann der Text em TextView z. B. nicht ausgewählt werden? Es wird beispielsweise kein Text zum Kopieren ausgewählt.textView, z. B. kann nicht ausgewählt werden?
das ist der Code Ich versuche herauszufinden, warum die Auswahl des Textes in Sicht blockiert.
UIView.animateWithDuration(2, delay: 0.0, options:[UIViewAnimationOptions.Repeat, UIViewAnimationOptions.Autoreverse], animations: {
self.view.backgroundColor = UIColor.blackColor()
self.view.backgroundColor = UIColor.greenColor()
self.view.backgroundColor = UIColor.grayColor()
self.view.backgroundColor = UIColor.redColor()
}, Fertigstellung: nil)
Eine der Animationsoptionen können Sie hinzufügen ist Interaktion mit dem Benutzer während der Animation zu ermöglichen ('UIViewAnimationOptions.AllowUserInteraction'). Standardmäßig ist dies auf "false" gesetzt, daher kann das Hinzufügen dieser Option Ihr Problem lösen. –
okay brauen..Es funktioniert perfekt – Ewerson