I am using CATransform3DMakeScale
to resize a vector graphic in an iPad app. It is animated by default and I would like to be able to change the duration of this animation. Any advice?
Asked
Active
Viewed 624 times
1

Matt Spoon
- 2,760
- 5
- 25
- 41
-
Might want take look- http://stackoverflow.com/questions/18206430/ios-translation-and-scale-animation – Shripada Sep 25 '15 at 06:11
1 Answers
1
If it's layers you want to adjust the duration try + setAnimationDuration:
Swift
class func setAnimationDuration(_ dur: CFTimeInterval)
Objective-C
+ (void)setAnimationDuration:(CFTimeInterval)duration
Sets the animation duration used by all animations within this transaction group.

l'L'l
- 44,951
- 10
- 95
- 146