AlertyAlert 0.2.4

AlertyAlert 0.2.4

测试已测试
语言语言 SwiftSwift
许可证 MIT
发布最新发布2017年2月
SwiftSwift 版本3.0
SPM支持 SPM

Peter Prokop维护。



  • Peter "Fatso" Prokop

AlertyAlert

AlertyAlert是一个自定义的alert controller实现,它具有以下特点:

  • 简单
  • 可定制的
  • 精美的
  • 柔和的

功能

典型的AlertyAlert用法示例

经典警告框

Classical alert

代码

let alert = Alerty.default.alert(withTitle: "Title", message: "Message")

// You can use different action styles just like with regular *UIAlertController*
let action1 = AlertyAction(title: "Default style action", style: .default, handler: {
    _ in
    print("action1")
})
let action2 = AlertyAction(title: "Destructive style action", style: .destructive, handler: {
    _ in
    print("action2")
})
let action3 = AlertyAction(title: "Cancel style action", style: .cancel, handler: {
    _ in
    print("action3")
})

alert.addAction(action1)
alert.addAction(action2)
alert.addAction(action3)

self.present(alert, animated: true, completion: nil)

定制警告框

警告框的绝大部分都可以进行定制 - 字体、颜色、圆角半径,甚至警告框头部都可以!

Force update alert

代码

// Create custom style and tweak it a bit
let style = AlertyStyle()
style.cornerRadius = 5
style.backgroundColor =  UIColor(red: 1, green: 1, blue: 1, alpha: 0.8)

style.titleFont = UIFont(name: "MocharyPERSONALUSEONLY", size: 32)
style.messageFont = UIFont(name: "MocharyPERSONALUSEONLY", size: 24)

let textColor = UIColor(red: 0.098, green: 0.584, blue: 0.678, alpha: 1)
style.titleColor = textColor
style.messageColor = textColor

style.cancelActionStyle = AlertyActionStyle(font: UIFont(name: "MocharyPERSONALUSEONLY", size: 18)!, tintColor: UIColor.brown)

// Init new *Alerty* with our style
let alerty = Alerty(style: style)

// Load alert header from *.xib*
let header = Bundle.main.loadNibNamed("SampleAlertHeader", owner: nil, options: nil)![0] as! UIView

let title = "Avertissement du lieutenant politiquement correct"
let message = "Votre message pourrait être offensive pour les autochtones de la région de Yamal.\nVeuillez corriger votre message."

// Use our custom *alerty* instead of *Alerty.default*
let alert = alerty.alert(withTitle: title, message: message)
let closeAction = AlertyAction(title: "I don't understand French!", style: .cancel, handler: nil)

alert.addAction(closeAction)
alert.addHeader(header)

self.present(alert, animated: true, completion: nil)

强制更新警告框

您可以为某些操作禁用警告框的消失

Force update alert

代码

let alert = Alerty.default.alert(withTitle: "Warning!", message: "Please update your application ASAP!")

// If *shallDismissAlert* set to *false*, alert will not be dismissed
var updateAction = AlertyAction(title: "This one doesn't dismiss alert", style: .default, handler: {
    _ in
    print("updateAction")
})
updateAction.shallDismissAlert = false

alert.addAction(updateAction)
self.present(alert, animated: true, completion: nil)

安装

手动

只需要克隆并将AlertyAlert/AlertyAlert子文件夹拖放到您的项目/工作空间中。

要求

  • iOS 9.0+
  • Xcode 8.0+
  • Swift 3.0

其他项目

  • SwiftOverlays - Swift GUI 库,用于显示各种弹出窗口和通知。
  • StarryStars - iOS GUI 库,用于显示和编辑评分。