pod SCLAlertView
とインストールポッドた後、あなたはSCLAlertViewは、多くの対照群は、TextFieldを追加したいとしているこれらの列挙型で
enum SCLAlertViewStyle: Int {
case Success, Error, Notice, Warning, Info, Edit, Wait
}
public enum SCLAnimationStyle {
case NoAnimation, TopToBottom, BottomToTop, LeftToRight, RightToLeft
}
をAlert view Style
とAlert View Animation
スタイルを選択することができ、ここではボタンやアイコン
がありますボタン機能コードの追加
let alertView = SCLAlertView()
alertView.addButton("First Button", target:self, selector:Selector("firstButton"))
alertView.addButton("Second Button") {
println("Second button tapped")
}
alertView.showSuccess("Button View", subTitle: "This alert view has buttons")
GitHubのページで
とアラートビューのカスタムタイプ
SCLAlertView().showError("Hello Error", subTitle: "This is a more descriptive error text.") // Error
SCLAlertView().showNotice("Hello Notice", subTitle: "This is a more descriptive notice text.") // Notice
SCLAlertView().showWarning("Hello Warning", subTitle: "This is a more descriptive warning text.") // Warning
SCLAlertView().showInfo("Hello Info", subTitle: "This is a more descriptive info text.") // Info
SCLAlertView().showEdit("Hello Edit", subTitle: "This is a more descriptive info text.") // Edit
あなたは多くの美しい最新デザインのアラートビューを見つけるだろう、
https://github.com/vikmeup/SCLAlertView-Swift
を使用するように簡単です、あなたのアラートに関するカスタムは何ですか?なぜあなたは通常の 'UIAlertController'を使用できませんか? ( 'UIAlertView'は非推奨です)。 – rmaddy