I\'m new to iPhone and Mac programming (developed for Windows before), and I\'ve got a question:
How do I animate the text property of an UILabel<
text
UILabel<
In Swift 2.0, using the UIView.transitionWithView() method:
UIView.transitionWithView()
UIView.transitionWithView(self.payPeriodSummaryLabel, duration: 0.2, options: [.CurveEaseInOut, .TransitionCrossDissolve], animations: { () -> Void in self.label.text = "your text value" }, completion: nil)