-
Notifications
You must be signed in to change notification settings - Fork 61
/
Copy pathLimitedTextField.swift
311 lines (263 loc) · 9.9 KB
/
LimitedTextField.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
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
//
// LimitedTextField.swift
// InputKitDemo_Swift
//
// Created by tingxins on 06/06/2017.
// Copyright © 2017 tingxins. All rights reserved.
//
import UIKit
open class LimitedTextField: UITextField {
//MARK: - Property defines
private var selectionRange: NSRange = NSMakeRange(0, 0)
private var historyText: String?
open var limitedType: LimitedType = .normal
@IBInspectable var _limitedType: Int {
get {
return limitedType.rawValue
}
set {
limitedType = LimitedType(rawValue: newValue) ?? .normal
}
}
@IBInspectable open var limitedNumber: Int = Int(MAX_INPUT)
@objc @IBInspectable open var limitedPrefix: Int = Int(MAX_INPUT)
@objc @IBInspectable open var limitedSuffix: Int = Int(MAX_INPUT)
@IBInspectable open var isTextSelecting: Bool = false
@IBInspectable open var limitedRegEx: String? {
didSet {
if let regEx = limitedRegEx, regEx.count > 0 {
limitedRegExs = [regEx]
}
}
}
open var limitedRegExs: [String]? {
didSet {
var realRegEx: String = ""
var realRegExs: [String] = []
limitedRegExs?.forEach({ (regEx) in
realRegEx = regEx.replacingOccurrences(of: "\\\\", with: "\\")
if realRegEx.count != 0 {
realRegExs.append(realRegEx)
}
})
limitedRegExs = realRegExs
clearCache()
}
}
//MARK: - initial Methods
public override init(frame: CGRect) {
super.init(frame: frame)
addNotifications()
addConfigs()
if self.delegate == nil { addDelegate() }
}
required public init?(coder aDecoder: NSCoder) {
super.init(coder: aDecoder)
}
open override func awakeFromNib() {
super.awakeFromNib()
addNotifications()
addConfigs()
if self.delegate == nil { addDelegate() }
}
private var limitedDelegate: LimitedTextFieldDelegate?
override open var delegate: UITextFieldDelegate? {
get {
return limitedDelegate
}
set {
limitedDelegate = LimitedTextFieldDelegate(realDelegate: newValue)
super.delegate = limitedDelegate
}
}
//MARK: - Deinitialized
deinit {
NotificationCenter.default.removeObserver(self)
}
}
extension LimitedTextField {
//MARK: - Config Methods
private func addNotifications() {
print(#function, UITextField.textDidChangeNotification)
NotificationCenter.default.addObserver(self,
selector: #selector(textFieldTextDidChange(notification:)),
name: UITextField.textDidChangeNotification,
object: nil)
}
private func addDelegate() {
delegate = nil
}
private func addConfigs() {
autocorrectionType = .no
}
private func clearCache() {
historyText = nil
}
}
//MARK: - @objc Methods
extension LimitedTextField {
//MARK: - Notifications
@objc private func textFieldTextDidChange(notification: Notification) {
let textField = notification.object as? UITextField
if self != textField { return }
let currentText = textField?.text
let maxLength = self.limitedNumber
var position: UITextPosition?
if let markedTextRange = textField?.markedTextRange {
position = textField?.position(from: markedTextRange.start, offset: 0)
}
var isMatch = true
switch self.limitedType {
case .normal: break
case .price:
isMatch = MatchManager.matchLimitedTextTypePrice(component: textField!, value: currentText!)
case .custom:
isMatch = MatchManager.matchLimitedTextTypeCustom(regExs: self.limitedRegExs, component: textField!, value: currentText!)
}
if isMatch {
self.historyText = textField?.text
}
if position == nil {
var flag = false
if let count = currentText?.count, count > maxLength {
textField?.text = String(currentText!.dropLast(count - maxLength))
flag = true
}
if self.isTextSelecting && !isMatch {
flag = true
if let hisText = self.historyText,
let curText = textField?.text,
hisText.count <= curText.count {
textField?.text = hisText
} else {
textField?.text = ""
}
}
let text: NSString = currentText! as NSString
if ((self.selectionRange.length > 0) && !isMatch && (self.selectionRange.length + self.selectionRange.location <= text.length)) {
let limitedText = text.substring(with: self.selectionRange)
textField?.text = textField?.text?.replacingOccurrences(of: limitedText, with: "")
self.selectionRange = NSMakeRange(0, 0)
if limitedText.count > 0 {
flag = true
}
}
if flag {
// Send limits msg
sendIllegalMsgToObject()
}
} else {
guard let markedTextRange = textField?.markedTextRange else { return }
self.selectionRange = range(from: markedTextRange)
}
sendDidChangeMsgToObject()
}
}
extension LimitedTextField {
fileprivate func range(from textRange: UITextRange) -> NSRange {
let location = offset(from: beginningOfDocument, to: textRange.start)
let length = offset(from: textRange.start, to: textRange.end)
return NSMakeRange(location, length)
}
fileprivate func sendIllegalMsgToObject() {
guard let delegate = self.limitedDelegate,
let realDelegate = delegate.realDelegate else {
return
}
delegate.sendMsgTo(obj: realDelegate, with: self, sel: InputKitMessage.Name.inputKitDidLimitedIllegalInputText)
}
fileprivate func sendDidChangeMsgToObject() {
guard let delegate = self.limitedDelegate,
let realDelegate = delegate.realDelegate else {
return
}
delegate.sendMsgTo(obj: realDelegate, with: self, sel: InputKitMessage.Name.inputKitDidChangeInputText)
}
fileprivate func resetSelectionTextRange() {
selectionRange = NSMakeRange(0, 0)
}
}
fileprivate class LimitedTextFieldDelegate: LimitedDelegate, UITextFieldDelegate {
@available(iOS 2.0, *)
func textFieldShouldBeginEditing(_ textField: UITextField) -> Bool {
guard let textFieldDelegate = self.realDelegate as? UITextFieldDelegate,
let shouldBeginEditing = textFieldDelegate.textFieldShouldBeginEditing?(textField) else {
return true
}
return shouldBeginEditing
} // return NO to forbid editing.
@available(iOS 2.0, *)
func textFieldDidBeginEditing(_ textField: UITextField) {
guard let textFieldDelegate = self.realDelegate as? UITextFieldDelegate else { return }
textFieldDelegate.textFieldDidBeginEditing?(textField)
}// became first responder
@available(iOS 2.0, *)
func textFieldShouldEndEditing(_ textField: UITextField) -> Bool {
guard let textFieldDelegate = self.realDelegate as? UITextFieldDelegate,
let shouldEndEditing = textFieldDelegate.textFieldShouldEndEditing?(textField) else {
return true
}
return shouldEndEditing
} // return YES to allow editing to stop and to resign first responder status. NO to disallow the editing session to end
@available(iOS 2.0, *)
func textFieldDidEndEditing(_ textField: UITextField) {
guard let textFieldDelegate = self.realDelegate as? UITextFieldDelegate else { return }
textFieldDelegate.textFieldDidEndEditing?(textField)
} // may be called if forced even if shouldEndEditing returns NO (e.g. view removed from window) or endEditing:YES called
@available(iOS 10.0, *)
func textFieldDidEndEditing(_ textField: UITextField, reason: UITextField.DidEndEditingReason) {
(self.realDelegate as? UITextFieldDelegate)?.textFieldDidEndEditing?(textField, reason: reason)
} // try call textFieldDidEndEditing:
@available(iOS 2.0, *)
func textField(_ textField: UITextField, shouldChangeCharactersIn range: NSRange, replacementString string: String) -> Bool {
var flag = true
if let textFieldDelegate = self.realDelegate as? UITextFieldDelegate,
let shouldChange = textFieldDelegate.textField?(textField, shouldChangeCharactersIn: range, replacementString: string) {
flag = shouldChange
}
var matchResult = true
let limitedTextField = textField as! LimitedTextField
if textField.isKind(of: LimitedTextField.self) {
// 重置 Mark Range. (即 候选文本)
limitedTextField.resetSelectionTextRange()
let matchStr = MatchManager.getMatchContentWithOriginalText(originalText: textField.text!, replaceText: string, range: range)
let isDeleteOperation = (range.length > 0 && string.count == 0)
switch limitedTextField.limitedType {
case .normal:
break
case .price:
matchResult = MatchManager.matchLimitedTextTypePrice(component: textField, value: matchStr)
case .custom:
if limitedTextField.isTextSelecting {
matchResult = true
} else {
matchResult = MatchManager.matchLimitedTextTypeCustom(regExs: limitedTextField.limitedRegExs, component: textField, value: matchStr)
}
}
let result = flag && (matchResult || isDeleteOperation)
if !result {
limitedTextField.sendIllegalMsgToObject()
}
limitedTextField.sendDidChangeMsgToObject()
return result
}
limitedTextField.sendDidChangeMsgToObject()
return matchResult && flag
}// return NO to not change text
@available(iOS 2.0, *)
func textFieldShouldClear(_ textField: UITextField) -> Bool {
guard let textFieldDelegate = self.realDelegate as? UITextFieldDelegate,
let shouldClear = textFieldDelegate.textFieldShouldClear?(textField) else {
return true
}
return shouldClear
}
@available(iOS 2.0, *)
func textFieldShouldReturn(_ textField: UITextField) -> Bool {
guard let textFieldDelegate = self.realDelegate as? UITextFieldDelegate,
let shouldReturn = textFieldDelegate.textFieldShouldReturn?(textField) else {
return true
}
return shouldReturn
}// called when 'return' key pressed. return NO to ignore.
}