ios animation with swift - raywenderlich.com · 2018. 11. 1. · property animations (60, 60) (280,...

Post on 06-Oct-2020

3 Views

Category:

Documents

0 Downloads

Preview:

Click to see full reader

TRANSCRIPT

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!

top related