SDCAlertView
started out as an alert that looked identical to UIAlertView
, but had support for a custom content view. With the introduction of UIAlertController
in iOS 8, the project was updated to the more modern API that UIAlertController
brought.
- Most
UIAlertController
functionality - Custom content views
- Preventing controllers from dismissing when the user taps a button
- Easy presentation/dismissal
- Attributed title label, message label, and buttons
- Appearance customization
- Usable from Swift and Objective-C
- Understandable button placement
- UI tests
- Custom alert behavior
- CocoaPods/Carthage/Swift Package Manager support
- Easy queueing of alerts
- Xcode 7 or higher
- iOS 8 or higher
If you want to use the library on iOS 7, please use version 2.5.4 (the latest 2.x release). SDCAlertView is not available on iOS 6.1 or below.
To install SDCAlertView using CocoaPods, please integrate it in your existing Podfile, or create a new Podfile:
platform :ios, '8.0'
use_frameworks!
target 'MyApp' do
pod 'SDCAlertView', '~> 4.0'
end
Then run pod install
.
To install with Carthage, add the following line to your Cartfile
:
"sberrevoets/SDCAlertView" ~> 4.0
Run carthage update
and drag SDCAlertView.framework
in the Build
folder into your project.
To use the Swift Package Manager, add the following to your Package.swift
file:
import PackageDescription
let package = Package(
name: "<your project name>"
dependencies: [
.Package(url: "https://github.com/sberrevoets/SDCAlertView/SDCAlertView.git", majorVersion: 4.0)
])
Starting with version 4.0, SDCAlertController
also supports the presentation of action sheets. Some things to keep in mind when using action sheets:
- It does not properly adapt on iPad. This is because iOS doesn't support
UIModalPresentationStyle.Custom
for adaptive presentations (such as when presenting an action sheet from a bar button item). - The new
AlertBehaviors
is, due to limitations in the Swift/Objective-C interop, not available when usingSDCAlertController
from Swift. This affectsAlertControllerStyle.Alert
as well. - When adding subviews to the custom content view, that view will replace the title and message labels.
SDCAlertView
is written in Swift, but can be used in both Swift and
Objective-C. Classes in Objective-C have the same name they do in Swift, but
with an SDC
prefix. Once Swift supports prefixing enums they will also get the SDC
prefix.
Unfortunately the Swift/Objective-C interop is not perfect, so not all functionality that's available in Swift is available in Objective-C.
let alert = AlertController(title: "Title", message: "This is a message", preferredStyle: .Alert)
alert.addAction(AlertAction(title: "Cancel", style: .Default))
alert.addAction(AlertAction(title: "OK", style: .Preferred))
alert.present()
// or use the convenience methods:
AlertController.alertWithTitle("Title", message: "This is a message", actionTitle: "OK")
AlertController.sheetWithTitle("Action sheet title", "Action sheet message", actions: ["OK", "Cancel"])
let spinner = UIActivityIndicatorView(activityIndicatorStyle: .Gray)
spinner.translatesAutoresizingMaskIntoConstraints = false
spinner.startAnimating()
let alert = AlertController(title: "Title", message: "Please wait...")
alert.contentView.addSubview(spinner)
spinner.centerXAnchor.constraintEqualToAnchor(alert.contentView.centerXAnchor).active = true
spinner.topAnchor.constraintEqualToAnchor(alert.contentView.topAnchor).active = true
spinner.bottomAnchor.constraintEqualToAnchor(alert.contentView.bottomAnchor).active = true
alert.present()
let alert = AlertController(title: "Title", message: "This is a message")
alert.addAction(AlertAction(title: "Dismiss", style: .Preferred))
alert.addAction(AlertAction(title: "Don't dismiss", style: .Default))
alert.shouldDismissHandler = { $0.title == "Dismiss" }
alert.present()
SDCAlertController
is a normal view controller, so applying a tintColor
to its view
will color the buttons and any subviews you add to the contentView
.
If you are looking for more customizations, create a type that conforms to VisualStyle
and use visualStyle
on the AlertController
instance. You can also subclass DefaultVisualStyle
for a set of default values that you can then override as needed.
I'm pretty active on Stack Overflow, so please use that if you have any questions. You can also use Twitter to contact me directly.
If you are experiencing bugs, feel free to post an issue or submit a pull request.
SDCAlertView is distributed under the MIT license.