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.3 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', '~> 5.1'
end
Then run pod install
.
To install with Carthage, add the following line to your Cartfile
:
"sberrevoets/SDCAlertView" ~> 5.1
Run carthage update
and drag SDCAlertView.framework
in the Build
folder into your project.
SPM does not yet support iOS, but SDCAlertView will be available there once it does.
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. Corresponding types in Objective-C have the same name they do in Swift, but with an SDC
prefix.
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 subclass of AlertVisualStyle
and use visualStyle
on the AlertController
instance. You can also create an instance of AlertVisualStyle
and overwrite the attributes you need (this is mainly intended to be used from Objective-C). Note that after an alert has been presented, changing any of these settings is ignored.
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.