
幾個關鍵點:
1.爲何用UITextField.leftView
?
避免了長按會出現放大鏡(雖然能夠重寫UITextField的方法,禁止複製、粘貼、選擇的功能,可是不能避免移動光標的位置。)若是光標的位置移動,則輸入的位置可能會發生變化,添加刪除的黑點就會錯亂。
2.爲何進入頁面直接顯示鍵盤?
在 viewWillAppear 的時候`self.textField.becomeFirstResponder()
,由於點擊leftView上是不會彈出鍵盤的。
3.如何添加和刪除黑點?
這裏須要定義一個全局的數組,添加和刪除UIView。
代碼以下:
func showViewOne() {
viewOne = UIView.init(frame: CGRect.init(x: 0, y: 0, width: SCREEN_WIDTH, height: SCREEN_HEIGHT))
viewOne.backgroundColor = bgColor
self.view.addSubview(viewOne)
let tipLabel = UILabel.init(frame: CGRect.init(x: 20, y: SCREEN_HEIGHT/3-50, width: SCREEN_WIDTH-40, height: 40))
tipLabel.text = "設置提現密碼"
tipLabel.textColor = UIColor.black
tipLabel.textAlignment = NSTextAlignment.center
tipLabel.font = UIFont.init(name: FONT, size: 16)
viewOne.addSubview(tipLabel)
passworldTF = UITextField.init(frame: CGRect.init(x: 20, y: tipLabel.bottom()+10, width: SCREEN_WIDTH-40, height: 40))
if (SCREEN_WIDTH > 320) {
passworldTF.frame = CGRect.init(x: 30, y: tipLabel.bottom()+10, width: SCREEN_WIDTH-60, height: 50)
}
passworldTF.backgroundColor = UIColor.white
passworldTF.layer.borderWidth = 1
passworldTF.layer.borderColor = lineColor.cgColor
passworldTF.keyboardType = UIKeyboardType.numberPad
passworldTF.tintColor = UIColor.clear
passworldTF.textColor = UIColor.clear
passworldTF.delegate = self
passworldTF.leftView = UIView.init(frame: CGRect.init(x: 0, y: 0, width: passworldTF.width(), height: passworldTF.height()))
passworldTF.leftViewMode = UITextFieldViewMode.always
viewOne.addSubview(passworldTF)
let lineSpaceWidth = passworldTF.width() / 6
//5條豎線
var i = 1
for _ in 1...5 {
let xLine = CGFloat(i)*lineSpaceWidth
let lineView = UIView.init(frame: CGRect.init(x: xLine, y: 0, width: 0.5, height: passworldTF.height()))
lineView.backgroundColor = lineColor
passworldTF.addSubview(lineView)
i = i + 1
}
}
func textField(_ textField: UITextField, shouldChangeCharactersIn range: NSRange, replacementString string: String) -> Bool {
if (textField == self.passworldTF) {
if (range.location >= 6) {
return false
} else {
if (range.length == 0) { //文本輸入狀態
let pointX = ((passworldTF.width()-62.5) / 12) * CGFloat(range.location * 2 + 1) + CGFloat(range.location) * 10.5
let pointY = (passworldTF.height()-10) / 2
//顯示黑點
let blackPoint = UIView.init(frame: CGRect.init(x: pointX, y: pointY, width: 10.0, height: 10.0))
blackPoint.layer.cornerRadius = 5
blackPoint.backgroundColor = UIColor.black
passworldTF.addSubview(blackPoint)
pointViewArr.append(blackPoint)
} else { //文本刪除狀態
//移除黑點
pointViewArr[range.location].removeFromSuperview()
pointViewArr.remove(at: range.location)
}
if string == "" {
let word = self.password.substring(with: NSMakeRange(0, range.location))
self.password = word as NSString
} else {
self.password = self.password.appending(string) as NSString
}
print(self.password)
return true
}
}
return true
}