A view that emits confetti with shapes, images, and text of your choosing for a specified duration, and then fades out.
import ConfettiView
let confettiView = ConfettiView()
confettiView.emit(with: [
  .text("๐จ๐ป"),
  .text("๐ฑ"),
  .shape(.circle, .purple),
  .shape(.triangle, .lightGray),
  .image(star, .orange)
])For more information, see the accompanying blog post on NSHipster.
To run the example project,
clone the repo and run pod install from the Example directory.
- iOS 10.0+
You can install ConfettiView via CocoaPods
by adding the following line to your Podfile:
pod 'ConfettiView-NSHipster'Run the pod install command
to download the library and integrate it into your Xcode project.
Note The module name for this library is "ConfettiView" --- that is, to use it, you add
import ConfettiViewto the top of your Swift code just as you would by any other installation method. The pod is called "NSHipster-ConfettiView" because there's an existing pod with the name "ConfettiView".
Mattt (@mattt)
ConfettiView is available under the MIT license. See the LICENSE file for more information.
