New
2.1.0
- fix issues caused by conflicting identifiers (#85) @Banck
- change WaterfallLayout default parameters' values to align with other layouts
- from
init(columns: Int = 1, spacing: CGFloat = 10) - to
init(columns: Int = 2, spacing: CGFloat = 0)
- from
- include WobbleAnimator into the podspec as a subspec.
pod "CollectionKit/WobbleAnimator"
BaseSimpleAnimator- rename
BaseSimpleAnimatortoSimpleAnimatorto align withSimpleLayout - rename
updateAnimationDurationtoanimationDuration - add
var animationOptions: UIViewAnimationOptions - add
var useSpringAnimation: Bool - add
var springDamping: CGFloat
- rename
FadeAnimator- add
var alpha: CGFloat
- add
ScaleAnimator- change its superclass from
BaseSimpleAnimatortoFadeAnimator - add
var scale: CGFloat
- change its superclass from
Example project:
- move examples into its own project. and switch from Carthage to Cocoapods.