测试已测试 | ✗ |
语言语言 | SwiftSwift |
许可证 | MIT |
发布最后发布 | 2017年12月 |
SwiftSwift 版本 | 3.0 |
SPM支持 SPM | ✗ |
由 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")
}