iOS Animation with Swift Part 5: Keyframe Animations Keyframe - - PowerPoint PPT Presentation

ios animation with swift
SMART_READER_LITE
LIVE PREVIEW

iOS Animation with Swift Part 5: Keyframe Animations Keyframe - - PowerPoint PPT Presentation

iOS Animation with Swift Part 5: Keyframe Animations Keyframe Animations Keyframe Animations 25% 25% 50% 10% start time end time total duration KeyFrame Animation APIs UIView.animateKeyframesWithDuration(1.5, delay: 0.0, options: nil,


slide-1
SLIDE 1

iOS Animation with Swift

Part 5: Keyframe Animations

slide-2
SLIDE 2
slide-3
SLIDE 3

Keyframe Animations

slide-4
SLIDE 4

Keyframe Animations

start time end time total duration 25% 25% 50% 10%

slide-5
SLIDE 5

KeyFrame Animation APIs

UIView.animateKeyframesWithDuration(1.5, delay: 0.0, options: nil, animations: { UIView.addKeyframeWithRelativeStartTime(0.0, relativeDuration: 0.25) { self.planeImage.center = CGPoint(x: 100, y: 100) } UIView.addKeyframeWithRelativeStartTime(0.25, relativeDuration: 0.25) { self.planeImage.center = CGPoint(x: 200, y: 50) } // ...more keyframes... }, completion:nil)

slide-6
SLIDE 6

Demo: Keyframe Animation

slide-7
SLIDE 7

Challenge Time! Boarding