- August 12, 2025
- Mins Read
To install NotchyAlert using Cocoapods, add the following line to your Podfile:
pod ‘NotchyAlert’
To install NotchyAlert using Carthage, add the following line to your Cartfile:
github “TheAbstractDev/NotchyAlert”
First, you’ll need to import NotchyAlert
import NotchyAlert
let notchy = Notchy(title: “Oops!”, description: nil, image: nil)
notchy.presentNotchy(in: self.view, duration: 3)
let notchy = Notchy(title: “Oops!”, description: “No Internet Connection.”, image: nil)
notchy.presentNotchy(in: self.view, duration: 3)
let notchy = Notchy(title: “Oops!”, description: nil, image: “<YOUR IMAGE>”)
notchy.presentNotchy(in: self.view, duration: 3)
let notchy = Notchy(title: “Oops!”, description: “No Internet Connection.”, image: “<YOUR IMAGE>”)
notchy.presentNotchy(in: self.view, duration: 3)
By default, the bounce effect is true. You can choose to disable the bounce effect by setting false on the call of presentNotchy
notchy.presentNotchy(in: self.view, duration: 3, bounce: false)
You can test it by downloading and run the Example project.
Recognize your user's voice elegantly without having to figure out authorization and audio engines. SwiftSpeech Examples Features Installation Getting Started ...
Example To run the example project, clone the repo, and run pod install from the Example directory first. Requirements iOS 14.0 Installation ...
SlidingRuler is a Swift package containing a SwiftUI control that acts like an linear infinite slider or a finite, more precise ...
SkeletonUI aims to bring an elegant, declarative syntax to skeleton loading animations. Get rid of loading screens or spinners and ...