Skip to content

yangmeyer/CPAccelerationTimer

Repository files navigation

CPAccelerationTimer

Calls a block a given number of times, spread out over a given duration, with the delays between calls – i.e. the acceleration/deceleration – determined by a given Bézier curve.

Think of it as an NSTimer with specifiable acceleration behavior.

Use cases

  • When you need an NSTimer with varying delays.
  • When you need to synchronize behavior with a custom-timed CAAnimation.

Example “Accelerating and decelerating heartbeat”:

[[CPAccelerationTimer accelerationTimerWithTicks:10
		totalDuration:20.0
		controlPoint1:CGPointMake(0.7, 0.0) // ease in
		controlPoint2:CGPointMake(0.5, 1.0) // ease out
		atEachTickDo:^(NSUInteger tickIndex) {
			self.heart.transform = CGAffineTransformIdentity;
			[UIView animateWithDuration:0.3 animations:^{
				self.heart.transform = CGAffineTransformMakeScale(1.2, 1.2);
			}];
		} completion:^{
			self.heart.transform = CGAffineTransformIdentity;
	}]
run];

Feel free to comment, fork, and submit pull requests!

Requirements

  • This component was built with ARC. Should your project not use ARC, make sure to specify the -fobjc-arc flag on this component’s files in Build phases > Compile sources.

Visual explanation

Visual explanation

License

The CPAccelerationTimer component is released under the MIT License.

The MIT License (MIT) Copyright (c) 2012-2013 compeople AG et al

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

About

Calls a block a given number of times, spread out over a given duration, with the between-calls delays determined by a given Bézier curve. Think of it as an NSTimer with custom acceleration.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published