iOS Animation with Swift - raywenderlich.com · 2018. 11. 1. · Property animations (60, 60) (280,...

Post on 06-Oct-2020

5 views 0 download

Transcript of iOS Animation with Swift - raywenderlich.com · 2018. 11. 1. · Property animations (60, 60) (280,...

iOS Animation with Swift

Part 1: Getting Started

Animatable properties

frame bounds center alpha transform contentStretch backgroundColor

center.x

alpha

transform

Property animations

(60, 60)

(280, 120)

(170, 90)

start time

end timeanimation duration

Animation blocks

UIView Animation APIs

UIView.animateWithDuration(_:, animations:) UIView.animateWithDuration(_:, animations:, completion:) UIView.animateWithDuration(_:, delay:, options:, animations:, completion:) more to come …

Demo: Animating properties

Challenge Time!