-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathUIAlertView+Block.swift
213 lines (186 loc) · 8.37 KB
/
UIAlertView+Block.swift
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
//
// UIAlertView+Block.swift
// UIAlertViewBlocks
//
// Created by Drew on 16/8/17.
// Copyright © 2016年 Drew. All rights reserved.
//
/**
UIActionSheet的类扩展,使用block来代替实现代理方法完成回调
*/
import UIKit
extension UIAlertView {
private struct AssociatedKey {
static var UIAlertViewOriginalDelegateKey = "UIAlertViewOriginalDelegateKey"
static var UIAlertViewBlockKey = "UIAlertViewTapBlockKey"
}
typealias UIAlertViewBlock = (alertView: UIAlertView)->Void
typealias UIAlertViewCompletionBlock = (alertView: UIAlertView, buttonIndex : Int)->Void
// 定义block类,每个Block对应一个代理方法
class Block {
var tapBlock : UIAlertViewCompletionBlock?
var willPresentBlock : UIAlertViewBlock?
var didPresentBlock : UIAlertViewBlock?
var willDismissBlock : UIAlertViewCompletionBlock?
var didDismissBlock : UIAlertViewCompletionBlock?
var cancelBlock : UIAlertViewBlock?
var shouldEnableFirstOtherButtonBlock : ((alertView: UIAlertView)->Bool)?
}
// 利用runtime为UIAlertView添加block属性
private var block : Block? {
get {
if let value = objc_getAssociatedObject(self, &AssociatedKey.UIAlertViewBlockKey) {
return value as? Block
}
return nil
}
set (newValue) {
self.checkAlertViewDelegate()
if let _ = objc_getAssociatedObject(self, &AssociatedKey.UIAlertViewBlockKey) {
objc_setAssociatedObject(self, &AssociatedKey.UIAlertViewBlockKey, nil, .OBJC_ASSOCIATION_RETAIN_NONATOMIC)
}
objc_setAssociatedObject(self, &AssociatedKey.UIAlertViewBlockKey, newValue, .OBJC_ASSOCIATION_RETAIN_NONATOMIC)
}
}
// 构造方法
convenience init(title : String,
message : String,
style : UIAlertViewStyle,
cancelButtonTitle : String,
otherButtonTitles : [String],
tapBlock : UIAlertViewCompletionBlock?) {
self.init(title: title, message: message, delegate: nil, cancelButtonTitle: cancelButtonTitle)
if otherButtonTitles.count != 0 {
for str in otherButtonTitles {
self.addButtonWithTitle(str)
}
}
if let tapBlock = tapBlock {
let blockMgr = self.block ?? Block()
blockMgr.tapBlock = tapBlock
self.block = blockMgr
}
}
// 类方法:定义并展示alertView
class func showWith(title : String,
message : String,
style : UIAlertViewStyle,
cancelButtonTitle : String,
otherButtonTitles : [String],
tapBlock : UIAlertViewCompletionBlock?) -> UIAlertView {
let alertView = UIAlertView(title: title, message: message, style: style, cancelButtonTitle: cancelButtonTitle, otherButtonTitles: otherButtonTitles, tapBlock: tapBlock)
alertView.show()
return alertView
}
class func showWith(title : String,
message : String,
cancelButtonTitle : String,
otherButtonTitles : [String],
tapBlock : UIAlertViewCompletionBlock?) -> UIAlertView {
return UIAlertView.showWith(title, message: message, style: .Default, cancelButtonTitle: cancelButtonTitle, otherButtonTitles: otherButtonTitles, tapBlock: tapBlock)
}
// 检查是否有设置代理
func checkAlertViewDelegate() {
if self.delegate == nil {
self.delegate = self
} else if !self.delegate!.isEqual(self) {
objc_setAssociatedObject(self, &AssociatedKey.UIAlertViewOriginalDelegateKey, self.delegate, .OBJC_ASSOCIATION_ASSIGN)
self.delegate = self
}
}
// 为alertView添加各代理方法对应的block
func tapBlock(tapBlock: UIAlertViewCompletionBlock) {
let blockMgr = self.block ?? Block()
blockMgr.tapBlock = tapBlock
self.block = blockMgr
}
func willDismissBlock(willDismissBlock: UIAlertViewCompletionBlock) {
let blockMgr = self.block ?? Block()
blockMgr.willDismissBlock = willDismissBlock
self.block = blockMgr
}
func didDismissBlock(didDismissBlock: UIAlertViewCompletionBlock) {
let blockMgr = self.block ?? Block()
blockMgr.didDismissBlock = didDismissBlock
self.block = blockMgr
}
func willPresentBlock(willPresentBlock: UIAlertViewBlock) {
let blockMgr = self.block ?? Block()
blockMgr.willPresentBlock = willPresentBlock
self.block = blockMgr
}
func didPresentBlock(didPresentBlock: UIAlertViewBlock) {
let blockMgr = self.block ?? Block()
blockMgr.didPresentBlock = didPresentBlock
self.block = blockMgr
}
func cancelBlock(cancelBlock: UIAlertViewBlock) {
let blockMgr = self.block ?? Block()
blockMgr.cancelBlock = cancelBlock
self.block = blockMgr
}
func shouldEnableFirstOtherButtonBlock(shouldEnableFirstOtherButtonBlock: (alertView: UIAlertView)->Bool) {
let blockMgr = self.block ?? Block()
blockMgr.shouldEnableFirstOtherButtonBlock = shouldEnableFirstOtherButtonBlock
self.block = blockMgr
}
}
extension UIAlertView : UIAlertViewDelegate {
public func alertView(alertView: UIAlertView, clickedButtonAtIndex buttonIndex: Int) {
if let completion = alertView.block?.tapBlock {
completion(alertView: alertView, buttonIndex: buttonIndex)
}
if let originalDelegate = objc_getAssociatedObject(self, &AssociatedKey.UIAlertViewOriginalDelegateKey) as? UIAlertViewDelegate {
originalDelegate.alertView?(alertView, clickedButtonAtIndex: buttonIndex)
}
}
public func alertView(alertView: UIAlertView, willDismissWithButtonIndex buttonIndex: Int) {
if let completion = alertView.block?.willDismissBlock {
completion(alertView: alertView, buttonIndex: buttonIndex)
}
if let originalDelegate = objc_getAssociatedObject(self, &AssociatedKey.UIAlertViewOriginalDelegateKey) as? UIAlertViewDelegate {
originalDelegate.alertView?(alertView, willDismissWithButtonIndex: buttonIndex)
}
}
public func alertView(alertView: UIAlertView, didDismissWithButtonIndex buttonIndex: Int) {
if let completion = alertView.block?.didDismissBlock {
completion(alertView: alertView, buttonIndex: buttonIndex)
}
if let originalDelegate = objc_getAssociatedObject(self, &AssociatedKey.UIAlertViewOriginalDelegateKey) as? UIAlertViewDelegate {
originalDelegate.alertView?(alertView, didDismissWithButtonIndex: buttonIndex)
}
}
public func willPresentAlertView(alertView: UIAlertView) {
if let block = alertView.block?.willPresentBlock {
block(alertView: alertView)
}
if let originalDelegate = objc_getAssociatedObject(self, &AssociatedKey.UIAlertViewBlockKey) as? UIAlertViewDelegate {
originalDelegate.willPresentAlertView?(alertView)
}
}
public func didPresentAlertView(alertView: UIAlertView) {
if let block = alertView.block?.didPresentBlock {
block(alertView: alertView)
}
if let originalDelegate = objc_getAssociatedObject(self, &AssociatedKey.UIAlertViewBlockKey) as? UIAlertViewDelegate {
originalDelegate.didPresentAlertView?(alertView)
}
}
public func alertViewCancel(alertView: UIAlertView) {
if let block = alertView.block?.cancelBlock {
block(alertView: alertView)
}
if let originalDelegate = objc_getAssociatedObject(self, &AssociatedKey.UIAlertViewBlockKey) as? UIAlertViewDelegate {
originalDelegate.alertViewCancel?(alertView)
}
}
public func alertViewShouldEnableFirstOtherButton(alertView: UIAlertView) -> Bool {
if let block = alertView.block?.shouldEnableFirstOtherButtonBlock {
return block(alertView: alertView)
}
if let originalDelegate = objc_getAssociatedObject(self, &AssociatedKey.UIAlertViewBlockKey) as? UIAlertViewDelegate {
return (originalDelegate.alertViewShouldEnableFirstOtherButton?(alertView))!
}
return true
}
}