NotchyAlert alternatives and similar libraries
Based on the "Alert & Action Sheet" category.
Alternatively, view NotchyAlert alternatives based on common mentions on social networks and blogs.
-
Alerts & Pickers
Advanced usage of UIAlertController and pickers based on it: Telegram, Contacts, Location, PhotoLibrary, Country, Phone Code, Currency, Date... -
SPAlert
DISCONTINUED. Native alert from Apple Music & Feedback. Contains Done, Heart & Message and other presets. [Moved to: https://github.com/ivanvorobei/SPAlert] -
StatusAlert
Display Apple system-like self-hiding status alerts. It is well suited for notifying user without interrupting user flow in iOS-like way. -
InAppNotify
Swift library to manage in app notification in swift language, like WhatsApp, Telegram, Frind, ecc. -
FloatingActionSheetController
FloatingActionSheetController is a cool design ActionSheetController library written in Swift2. -
Sheet
DISCONTINUED. Show a workflow of view controllers as an action sheet. Very light weight. No configuration needed.
CodeRabbit: AI Code Reviews for Developers
* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of NotchyAlert or a related project?
README
NotchyAlert
[](Screenshots/banner.png)
Prerequisites
- Xcode 9.x
- Swift 4.x
- iPhone X Simulator/Device
Demo
Installation
Cocoapods
To install NotchyAlert using Cocoapods, add the following line to your Podfile:
pod 'NotchyAlert'
Carthage
To install NotchyAlert using Carthage, add the following line to your Cartfile:
github "TheAbstractDev/NotchyAlert"
Usage
First, you'll need to import NotchyAlert
import NotchyAlert
Title Only
let notchy = Notchy(title: "Oops!", description: nil, image: nil)
notchy.presentNotchy(in: self.view, duration: 3)
Title and Description
let notchy = Notchy(title: "Oops!", description: "No Internet Connection.", image: nil)
notchy.presentNotchy(in: self.view, duration: 3)
Title and Image
let notchy = Notchy(title: "Oops!", description: nil, image: "<YOUR IMAGE>")
notchy.presentNotchy(in: self.view, duration: 3)
Title, Decription and Image
let notchy = Notchy(title: "Oops!", description: "No Internet Connection.", image: "<YOUR IMAGE>")
notchy.presentNotchy(in: self.view, duration: 3)
Bounce Effect
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)
Example
You can test it by downloading and run the Example project.
License
NotchyAlert is available under the MIT license. See the LICENSE file for more info.
*Note that all licence references and agreements mentioned in the NotchyAlert README section above
are relevant to that project's source code only.