Home

Awesome

Simple Interface Core Animation

<p align="center"> <img src="./resources/logo.png" alt="Sica" width="70%" height="70%" /> </p> <p align="center"> <img src="http://img.shields.io/badge/platform-iOS | tvOS | macOS-blue.svg?style=flat" alt="Platform" /> <a href="https://developer.apple.com/swift"> <img src="http://img.shields.io/badge/Swift-4.1%20|%204.2|%205.0-brightgreen.svg?style=flat" alt="Language"> </a> <a href="https://github.com/Carthage/Carthage"> <img src="https://img.shields.io/badge/Carthage-compatible-4BC51D.svg?style=flat" alt="Carthage" /> </a> <br /> <a href="https://github.com/apple/swift-package-manager"> <img src="https://img.shields.io/badge/Swift%20Package%20Manager-compatible-brightgreen.svg?style=flat" alt="Swift Package Manager" /> </a> <a href="https://cocoapods.org/pods/Sica"> <img src="https://img.shields.io/cocoapods/v/Sica.svg?style=flat" alt="Version" /> </a> <a href="https://cocoapods.org/pods/Sica"> <img src="https://img.shields.io/cocoapods/l/Sica.svg?style=flat" alt="License" /> </a> </p>

Sica can execute various animations sequentially or parallelly.

Features

Requirements

Installation

Carthage

If youโ€™re using Carthage, simply add Sica to your Cartfile:

github "cats-oss/Sica"

CocoaPods

Sica is available through CocoaPods. To instal it, simply add the following line to your Podfile:

pod 'Sica'

Swift Package Manager

Sica is available through SwiftPM, create Package.swift and add dependencies value

dependencies: [
    .package(url: "https://github.com/cats-oss/Sica.git", from: "0.4.1")
]

See also: GitHub - j-channings/swift-package-manager-ios: Example of how to use SPM v4 to manage iOS dependencies

Usage

Sample Animation

Sequence Animation

If you set .sequence, sequence animation is shown.

let animator = Animator(view: sampleView)
animator
    .addBasicAnimation(keyPath: .positionX, from: 50, to: 150, duration: 2, timingFunction: .easeOutExpo)
    .addSpringAnimation(keyPath: .boundsSize, from: sampleView.frame.size, to: CGSize(width: 240, height: 240), damping: 12, mass: 1, stiffness: 240, initialVelocity: 0, duration: 1)
    .run(type: .sequence)

SequenceAnimation

Parallel Animation

If you set .parallel, parallel animation is shown.

let animator = Animator(view: sampleView)
animator
    .addBasicAnimation(keyPath: .positionX, from: 50, to: 150, duration: 5, timingFunction: .easeOutExpo)
    .addBasicAnimation(keyPath: .transformRotationZ, from: 0, to: CGFloat.pi, duration: 3, timingFunction: .easeOutExpo)
    .run(type: .parallel)

ParallelAnimation

Forever Animation

If you set forever before calling run, forever animation is shown.

let animator = Animator(view: sampleView)
animator
    .addBasicAnimation(keyPath: .positionX, from: 50, to: 150, duration: 2, timingFunction: .easeOutExpo)
    .addBasicAnimation(keyPath: .positionX, from: 150, to: 50, duration: 2, timingFunction: .easeOutExpo)
    .forever(autoreverses: false)
    .run(type: .sequence)

Forever

Cancel

If you want to cancel animation, you should call cancel.

let animator = Animator(view: sampleView)
/*
Add animation and run
*/
animator.cancel() // Animation cancel

Remove Added Animations

If you call run and then you call add animation method, no animation will be added. If you use animator again, you call removeAll before addBasicAnimation or addSpringAnimation or addTransitionAnimation.

let animator = Animator(view: sampleView)
/*
Add animation and run
*/

// Bad
animator.addBasicAnimation() // ๐Ÿ™… you can't add animation

// Good
animator.removeAll()
        .addBasicAnimation() // ๐Ÿ™† You can add animation.

Functions

Add Animation

    public func addBasicAnimation<T>(keyPath: Sica.AnimationKeyPath<T>, from: T, to: T, duration: Double, delay: Double = default, timingFunction: Sica.TimingFunction = default) -> Self where T : AnimationValueType
    public func addSpringAnimation<T>(keyPath: Sica.AnimationKeyPath<T>, from: T, to: T, damping: CGFloat, mass: CGFloat, stiffness: CGFloat, initialVelocity: CGFloat, duration: Double, delay: Double = default, timingFunction: Sica.TimingFunction = default) -> Self where T : AnimationValueType
    public func addTransitionAnimation(startProgress: Float, endProgress: Float, type: Sica.Transition, subtype: Sica.TransitionSub, duration: Double, delay: Double = default, timingFunction: Sica.TimingFunction = default) -> Self

Add Animation Option

    public func delay(_ delay: Double) -> Self
    public func forever(autoreverses: Bool = default) -> Self

Animation Operation

    public func run(type: Sica.Animator.AnimationPlayType, isRemovedOnCompletion: Bool = default, completion: (() -> Swift.Void)? = default)
    public func cancel()
    public func removeAll() -> Self

Extensions

You can access sica property in UIView and CALayer.

let view = UIView(frame: ...)
view.sica
    .addBasicAnimation(keyPath: .positionX, from: 50, to: 150, duration: 2, timingFunction: .easeOutExpo)
    .run(type: .sequence)
let layer = CALayer()
layer.sica
    .addBasicAnimation(keyPath: .positionX, from: 50, to: 150, duration: 2, timingFunction: .easeOutExpo)
    .run(type: .sequence)

Support

Animation

AnimationPlayType

you can choose animation play type

EasingFunctions

you can choose various timing functions

EasingFunctions

KeyPaths Table

SicaKeyPath
.anchorPointanchorPoint
.backgroundColorbackgroundColor
.borderColorborderColor
.borderWidthborderWidth
.boundsbounds
.contentscontents
.contentsRectcontentsRect
.cornerRadiuscornerRadius
.filtersfilters
.frameframe
.hiddenhidden
.maskmask
.masksToBoundsmasksToBounds
.opacityopacity
.pathpath
.positionposition
.shadowColorshadowColor
.shadowOffsetshadowOffset
.shadowOpacityshadowOpacity
.shadowPathshadowPath
.shadowRadiusshadowRadius
.sublayerssublayers
.sublayerTransformsublayerTransform
.transformtransform
.zPositionzPosition

Anchor Point

SicaKeyPath
.anchorPointXanchorPoint.x
.anchorPointyanchorPoint.y

Bounds

SicaKeyPath
.boundsOriginbounds.origin
.boundsOriginXbounds.origin.x
.boundsOriginYbounds.origin.y
.boundsSizebounds.size
.boundsSizeWidthbounds.size.width
.boundsSizeHeightbounds.size.height

Contents

SicaKeyPath
.contentsRectOrigincontentsRect.origin
.contentsRectOriginXcontentsRect.origin.x
.contentsRectOriginYcontentsRect.origin.y
.contentsRectSizecontentsRect.size
.contentsRectSizeWidthcontentsRect.size.width
.contentsRectSizeHeightcontentsRect.size.height

Frame

SicaKeyPath
.frameOriginframe.origin
.frameOriginXframe.origin.x
.frameOriginYframe.origin.y
.frameSizeframe.size
.frameSizeWidthframe.size.width
.frameSizeHeightframe.size.height

Position

SicaKeyPath
.positionXposition.x
.positionYposition.y

Shadow Offset

SicaKeyPath
.shadowOffsetWidthshadowOffset.width
.shadowOffsetHeightshadowOffset.height

Sublayer Transform

SicaKeyPath
.sublayerTransformRotationXsublayerTransform.rotation.x
.sublayerTransformRotationYsublayerTransform.rotation.y
.sublayerTransformRotationZsublayerTransform.rotation.z
.sublayerTransformScaleXsublayerTransform.scale.x
.sublayerTransformScaleYsublayerTransform.scale.y
.sublayerTransformScaleZsublayerTransform.scale.z
.sublayerTransformTranslationXsublayerTransform.translation.x
.sublayerTransformTranslationYsublayerTransform.translation.y
.sublayerTransformTranslationZsublayerTransform.translation.z

Transform

SicaKeyPath
.transformRotationXtransform.rotation.x
.transformRotationYtransform.rotation.y
.transformRotationZtransform.rotation.z
.transformScaleXtransform.scale.x
.transformScaleYtransform.scale.y
.transformScaleZtransform.scale.z
.transformTranslationXtransform.translation.x
.transformTranslationYtransform.translation.y
.transformTranslationZtransform.translation.z

License

Sica is available under the MIT license. See the LICENSE file for more info.