在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
开源软件名称:codestergit/SweetAlert-iOS开源软件地址:https://github.com/codestergit/SweetAlert-iOS开源编程语言:Swift 98.2%开源软件介绍:Sweet Alert iOSBeautiful Animated custom Alert View inspired from javascript library SweetAlert.
Written in Swift this SweetAlertView can be used in Swift and Objective-C projects. SweetAlertView provides live intutive experience to user actions.It can be used in place of ###Usage #####Basic message: SweetAlert().showAlert("Here's a message!") #####Title with a text under: SweetAlert().showAlert("Here's a message!", subTitle: "It's pretty, isn't it?", style: AlertStyle.None) #####Animated Success message: SweetAlert().showAlert("Good job!", subTitle: "You clicked the button!", style: AlertStyle.Success) #####Warning message and Chained Animated Success messge on completion: SweetAlert().showAlert("Are you sure?", subTitle: "You file will permanently delete!", style: AlertStyle.Warning, buttonTitle:"Cancel", buttonColor:UIColorFromRGB(0xD0D0D0) , otherButtonTitle: "Yes, delete it!", otherButtonColor: UIColorFromRGB(0xDD6B55)) { (isOtherButton) -> Void in
if isOtherButton == true {
println("Cancel Button Pressed")
}
else {
SweetAlert().showAlert("Deleted!", subTitle: "Your imaginary file has been deleted!", style: AlertStyle.Success)
}
} #####Chained Alerts on actions with custom button colors: //Chaining alerts with messages on button click
SweetAlert().showAlert("Are you sure?", subTitle: "You file will permanently delete!", style: AlertStyle.Warning, buttonTitle:"No, cancel plx!", buttonColor:UIColorFromRGB(0xD0D0D0) , otherButtonTitle: "Yes, delete it!", otherButtonColor: UIColorFromRGB(0xDD6B55)) { (isOtherButton) -> Void in
if isOtherButton == true {
SweetAlert().showAlert("Cancelled!", subTitle: "Your imaginary file is safe", style: AlertStyle.Error)
}
else {
SweetAlert().showAlert("Deleted!", subTitle: "Your imaginary file has been deleted!", style: AlertStyle.Success)
}
} #####Custom icon alert: SweetAlert().showAlert("Sweet!", subTitle: "Here's a custom image.", style: AlertStyle.CustomImag(imageFile: "thumb.jpg")) ###Diffrent Animated Styles for Diffrent Purposes enum AlertStyle {
case Success,Error,Warning,None
case CustomImag(imageFile:String)
} ###Installation
Add the ###Reuirements
License
|
2023-10-27
2022-08-15
2022-08-17
2022-09-23
2022-08-13
请发表评论