2019-08-09 18:02:41 +08:00
|
|
|
//
|
|
|
|
// GuardModel.swift
|
|
|
|
// ProHUD
|
|
|
|
//
|
|
|
|
// Created by xaoxuu on 2019/8/9.
|
|
|
|
// Copyright © 2019 Titan Studio. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
import UIKit
|
|
|
|
|
|
|
|
public extension Guard {
|
|
|
|
|
2019-08-12 20:20:07 +08:00
|
|
|
struct ViewModel {
|
2019-08-09 18:02:41 +08:00
|
|
|
|
2021-07-20 16:04:39 +08:00
|
|
|
weak var vc: Guard?
|
2019-08-09 18:02:41 +08:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
public extension Guard.ViewModel {
|
|
|
|
|
|
|
|
/// 加载一个标题
|
|
|
|
/// - Parameter text: 文本
|
|
|
|
@discardableResult func add(title: String?) -> UILabel {
|
|
|
|
return vc!.add(title: title)
|
|
|
|
}
|
|
|
|
|
|
|
|
/// 加载一个副标题
|
|
|
|
/// - Parameter text: 文本
|
|
|
|
@discardableResult func add(subTitle: String?) -> UILabel {
|
|
|
|
return vc!.add(subTitle: subTitle)
|
|
|
|
}
|
|
|
|
|
|
|
|
/// 加载一段正文
|
|
|
|
/// - Parameter text: 文本
|
|
|
|
@discardableResult func add(message: String?) -> UILabel {
|
|
|
|
return vc!.add(message: message)
|
|
|
|
}
|
|
|
|
|
|
|
|
/// 加载一个按钮
|
|
|
|
/// - Parameter style: 样式
|
|
|
|
/// - Parameter title: 标题
|
|
|
|
/// - Parameter action: 事件
|
|
|
|
@discardableResult func add(action style: UIAlertAction.Style, title: String?, handler: (() -> Void)?) -> UIButton {
|
2019-08-12 15:02:36 +08:00
|
|
|
return vc!.insert(action: nil, style: style, title: title, handler: handler)
|
2019-08-09 18:02:41 +08:00
|
|
|
}
|
|
|
|
|
2019-08-12 20:20:07 +08:00
|
|
|
/// 插入一个按钮
|
2019-08-09 18:02:41 +08:00
|
|
|
/// - Parameter index: 索引
|
|
|
|
/// - Parameter style: 样式
|
|
|
|
/// - Parameter title: 标题
|
|
|
|
/// - Parameter handler: 事件处理
|
2019-08-12 15:02:36 +08:00
|
|
|
@discardableResult func insert(action index: Int, style: UIAlertAction.Style, title: String?, handler: (() -> Void)?) -> UIButton {
|
|
|
|
return vc!.insert(action: index, style: style, title: title, handler: handler)
|
2019-08-09 18:02:41 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/// 更新按钮
|
|
|
|
/// - Parameter index: 索引
|
|
|
|
/// - Parameter style: 样式
|
|
|
|
/// - Parameter title: 标题
|
|
|
|
/// - Parameter handler: 事件处理
|
2019-08-12 15:02:36 +08:00
|
|
|
func update(action index: Int, style: UIAlertAction.Style, title: String?, handler: (() -> Void)?) {
|
|
|
|
vc?.update(action: index, style: style, title: title, handler: handler)
|
2019-08-09 18:02:41 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/// 移除按钮
|
|
|
|
/// - Parameter index: 索引
|
|
|
|
func remove(action index: Int...) {
|
|
|
|
for (i, idx) in index.enumerated() {
|
2019-08-12 15:02:36 +08:00
|
|
|
vc?.remove(index: idx-i)
|
2019-08-09 18:02:41 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
}
|