Animating UILabel Font Size Change

前端 未结 9 2082
醉话见心
醉话见心 2020-11-30 21:31

I am currently making an application that uses a custom View Controller container. Multiple views are on the screen at one time and when one is tapped, the selected view con

9条回答
  •  被撕碎了的回忆
    2020-11-30 22:00

    For those not looking for a transform, but actual value change:

    UIView.transition(with: label, duration: 0.25, options: .transitionCrossDissolve, animations: {
        self.label.font = UIFont.systemFont(ofSize: 15)
    }) { isFinished in }
    

提交回复
热议问题