CocoaPods trunk is moving to be read-only. Read more on the blog, there are 17 months to go.

UIViewAnimation 2.0.0

UIViewAnimation 2.0.0

Maintained by venwu1984.



  • By
  • ven.wu

UIViewAnimation

Description

UIViewAmination is an animation extension of UIView. It provides several animations.

Installation

CocoaPods

# Podfile
use_frameworks!

target 'YOUR_TARGET_NAME' do
    pod 'UIViewAnimation', '~> 2.0.0'
end

How to use

  • Import the UIViewAnimation in the file
	import UIViewAnimation
  • Use the view instance to execute the animation method
	let view = UIView()
	
	// Call the animation you want as below
	view.animationFlipFromRight()
	
	view.animationPageCurl()
	
	view.animationCubeFromTop()
	
	view.animationRotate()

License

The source code is distributed under the nonviral MIT License. It's the simplest most permissive license available.

Version History

  • v1.0.0: Nov 13 2018
    • [NEW] The first version.