Advertisement
mikelily

Untitled

Mar 18th, 2020
1,005
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Swift 0.36 KB | None | 0 0
  1. // textField 裡面輸入的字右移
  2. extension UITextField{
  3.     func moveLeft(){
  4.         self.leftView = UIView.init(frame:CGRect(x: 0,y: 0,width: 5,height: 0))
  5.         self.leftViewMode = .always
  6.     }
  7. }
  8. xxxxTextField.moveLeft()
  9.  
  10.  
  11. // 點擊空白處 收起鍵盤
  12. @objc func viewTapped(gestureRecognizer: UITapGestureRecognizer){
  13.     view.endEditing(true)
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement