SAConfettiView

It's Raining Confetti! SAConfettiView is the easiest way to add fun, multi-colored confetti to your application and make users feel rewarded. Written in Swift, SAConfettiView is a subclass of UIView and is highly customizable. From various types and colors of confetti to different levels of intensity, you can make the confetti as fancy as you want.

SAConfettiView

Installation

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

pod "SAConfettiView"
Swift

And then run:

$ pod install

Manual Installation

To manually install SAConfettiView, simply add SAConfettiView.swift to your project.

Usage

Creating a SAConfettiView is the same as creating a UIView:

let confettiView = SAConfettiView(frame: self.view.bounds)
Swift

Don't forget to add the subview!

self.view.addSubview(confettiView)
Swift

Types

Pick one of the preconfigured types of confetti with the .type property, or create your own by providing a custom image. This property defaults to the .Confetti type.

.Confetti

confetti

confettiView.type = .Confetti
Swift
.Triangle

triangle

confettiView.type = .Triangle
Swift
.Star

star

confettiView.type = .Star
Swift
.Diamond

diamond

confettiView.type = .Diamond
Swift
.Image

image

confettiView.type = .Image(UIImage(named: "smiley"))
Swift

Colors

Set the colors of the confetti with the .colors property. This property has a default value of multiple colors.

confettiView.colors = [UIColor.redColor(), UIColor.greenColor(), UIColor.blueColor()]
Swift

Intensity

The intensity refers to how many particles are generated and how quickly they fall. Set the intensity of the confetti with the .intensity property by passing in a value between 0 and 1. The default intensity is 0.5.

confettiView.intensity = 0.75
Swift

Starting

To start the confetti, use

confettiView.startConfetti()
Swift

Stopping

To stop the confetti, use

confettiView.stopConfetti()
Swift

Status

To check if the confetti is active and currently being displayed, use

confettiView.isActive()
Swift

Returns true if it is being displayed, and false if it is not.

GitHub

Confetti! Who doesn't like confetti?Read More

Latest commit to the master branch on 6-7-2022
Download as zip