- August 28, 2025
- Mins Read
An UIAlertView replacement written in Swift with a modern chainable API and highly customizable UI, inspired by SIAlertView and SweetAlert-iOS.
pod ‘JLAlertView’
use_frameworks!
JLAlertView is compatible with Carthage. Add this to you Cartfile:
github “skyline75489/JLAlertView”
Add JLAlertView.swift in your project.
JLAlertView(title: “Default Style”, message: “Standard Alert”)
.addTextFieldWithConfigurationHandler({ (textField) in
textField.placeholder = “Username”
})
.addTextFieldWithConfigurationHandler({ (textField) in
textField.placeholder = “Password”
})
.addButttonWithTitle(“Cancel”, style: .Cancel, action: nil)
.addButttonWithTitle(“OK”, action:{(title, alert) in
let username = alert.textFields[0].text
let password = alert.textFields[1].text
print(username)
print(password)
})
.show()
This package provides you with an easy way to show tooltips over any SwiftUI view, since Apple does not provide ...
SimpleToast is a simple, lightweight, flexible and easy to use library to show toasts / popup notifications inside iOS or ...
Create Toast Views with Minimal Effort in SwiftUI Using SSToastMessage. SSToastMessage enables you to effortlessly add toast notifications, alerts, and ...