CatAlertController alternatives and similar libraries
Based on the "Alert & Action Sheet" category.
Alternatively, view CatAlertController 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 CatAlertController or a related project?
README
Description
CatAlertController is a high level manager object that with chaining style for UIAlertController.
Requirements
- Swift 4+
- iOS 8.0+
Installation
CatAlertController is available through CocoaPods and Carthage.
CocoaPods
Add the following line to your Podfile:
use_frameworks!
pod 'CatAlertController'
Carthage
Add the following line to your Cartfile:
github "ImKcat/CatAlertController"
Usage
Here is the alert style sample code in iPhone:
CatAlertController(title: "CatAlertController",
message: "This is CatAlertController",
preferredStyle: UIAlertControllerStyle.alert)
.addAction(UIAlertAction(title: "Cancel", style: UIAlertActionStyle.cancel))
.addAction(UIAlertAction(title: "OK", style: UIAlertActionStyle.default))
.flash(from: self, delay: 0.3)
Here is the action sheet style sample code in iPad:
// Don't worry the action sheet style present in iPad, it won't be crash, take it easy :)
CatAlertController(title: "CatAlertController",
message: "This is CatAlertController",
preferredStyle: UIAlertControllerStyle.actionSheet)
.addAction(UIAlertAction(title: "Item 1"))
.addAction(UIAlertAction(title: "Item 2"))
.addAction(UIAlertAction(title: "Item 3"))
.addAction(UIAlertAction(title: "Cancel", style: UIAlertActionStyle.cancel))
.flash(from: self, delay: 1)
License
CatAlertController is available under the MIT license. See the LICENSE file for more info.
*Note that all licence references and agreements mentioned in the CatAlertController README section above
are relevant to that project's source code only.