platform :ios, '8.0'
target 'YourIosApps' do
use_frameworks!
pod 'AlertEasily', '~> 1.0.0'
end
$ pod install
$ touch Cartfile
github "MZC0829/AlertEasily"
$ carthage update
- iOS 8.0+
- swift 3+ and swift 4
showAlert(title: "This is AlertEasily")
showAlert(title: "AlertEasily", message: "This is AlertEasily", preferredStyle: .alert, defaultHandler: {
print("clicked default action")
}, cancelHandler: nil)
showAlert(title: "AlertEasily", message: "This is AlertEasily", preferredStyle: .alert, defaultHandler: {
print("clicked default action")
}) {
print("clicked cancel action")
}