SCLAlertView-Swiftgit
https://github.com/vikmeup/SCLAlertView-Swiftgithub
Animated Alert View written in Swift, which can be used as a UIAlertView
or UIAlertController
replacement. Since UIAlertView
is deprecated and UIAlertController
only works on iOS 8.x or above, if you have a Swift project where you want to support iOS 7.x too, SCLAlertView is an ideal substitution.swift
用swift寫的一個能夠作動畫的AlertView,你能夠用它替換 UIAlertView 或者是 UIAlertController。蘋果官方在 iOS 8.x 的時候開始棄用 UIAlertView ,若是你使用 Swift 開發項目,且想支持 iOS 7.x,SCLAlertView 能夠知足你的需求。app
Easy to useide
// Get started
SCLAlertView().showInfo("Important info", subTitle: "You are great")
Updating the alert view - 更新 alert view動畫
let alertViewResponder: SCLAlertViewResponder = SCLAlertView().showSuccess("Hello World", subTitle: "This is a more descriptive text.") // Upon displaying, change/close view alertViewResponder.setTitle("New Title") // Rename title alertViewResponder.setSubTitle("New description") // Rename subtitle alertViewResponder.close() // Close view
Alternative alert types - 多種 alertView 的類型ui
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
SCLAlertView().showTitle(
title: "Congratulations", // Title of view subTitle: "Operation successfully completed.", // String of view duration: 2.0, // Duration to show before closing automatically, default: 0.0 completeText: "Done", // Optional button value, default: "" style: .Success // Styles - see below. colorStyle: 0xA429FF, colorTextButton: 0xFFFFFF )
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")
Hide default close button - 隱藏默認的關閉按鈕
let alertView = SCLAlertView() alertView.showCloseButton = false alertView.showSuccess("No button", subTitle: "You will have hard times trying to close me")
// Add a text field
let alert = SCLAlertView() let txt = alert.addTextField(title:"Enter your name") alert.addButton("Show Name") { println("Text value: \(txt.text)") } alert.showEdit("Edit View", subTitle: "This alert view shows a text box")
Alert View Styles - Alert View 的各類風格
enum SCLAlertViewStyle: Int { case Success, Error, Notice, Warning, Info, Edit, Wait }
安裝
SCLAlertView is available through CocoaPods.
你能夠經過 CocoaPods 安裝 SCLAlertView。
To install add the following line to your Podfile:
添加下面一句話便可:
pod 'SCLAlertView'
I tried to build an easy to use API, while beeing flexible enough for multiple variations, but I'm sure there are ways of improving and adding more features, so feel free to collaborate with ideas, issues and/or pull requests.
Has been developed initially for the Scroll Feed app