Sha256: cce432c7fc5daab7874928becd969f300a8ad241203d8568e847edc96cb302aa
Contents?: true
Size: 883 Bytes
Versions: 25
Compression:
Stored size: 883 Bytes
Contents
class CAAnimation class << self def basic(target, key_path, options={}, &block) animation = CABasicAnimation.animationWithKeyPath(key_path) animation.duration = options[:duration] if options[:duration] animation.delegate = options[:delegate] if options[:delegate] if options.key?(:from) || options.key?(:to) || options.key?(:by) add_animation = options.fetch(:add, true) animation.fromValue = options[:from] if options[:from] animation.toValue = options[:to] if options[:to] animation.byValue = options[:by] if options[:by] else add_animation = options.fetch(:add, false) end if add_animation target.addAnimation(animation, forKey:key_path) target.send("#{key_path}=", options[:to]) end block.call(animation) if block return animation end end end
Version data entries
25 entries across 25 versions & 1 rubygems