CocoaPods trunk is moving to be read-only. Read more on the blog, there are 18 months to go.
TestsTested | ✗ |
LangLanguage | SwiftSwift |
License | MIT |
ReleasedLast Release | Dec 2017 |
SwiftSwift Version | 3.0 |
SPMSupports SPM | ✗ |
Maintained by MZC0829.
platform :ios, '8.0'
target 'YourIosApps' do
use_frameworks!
pod 'AlertEasily', '~> 0.0.3'
end
$ pod install
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")
}