├── .gitignore ├── LICENSE ├── Project ├── XHTextField.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata ├── XHTextField │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── CustomUITextField.h │ ├── CustomUITextField.m │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── 120.png │ │ │ ├── 152.png │ │ │ ├── 72.png │ │ │ ├── 76.png │ │ │ └── Contents.json │ │ └── LaunchImage.launchimage │ │ │ ├── Contents.json │ │ │ ├── Default-568h@2x.png │ │ │ ├── Default-Portrait.png │ │ │ ├── Default-Portrait@2x.png │ │ │ └── Default@2x.png │ ├── ViewController.h │ ├── ViewController.m │ ├── XHTextField-Info.plist │ ├── XHTextField-Prefix.pch │ ├── en.lproj │ │ └── InfoPlist.strings │ ├── iPad.storyboard │ ├── iPhone.storyboard │ └── main.m └── XHTextFieldTests │ ├── XHTextFieldTests-Info.plist │ ├── XHTextFieldTests.m │ └── en.lproj │ └── InfoPlist.strings ├── README.md ├── Screenshots └── TextField.gif ├── Source ├── UIView+XHFindViewController.h ├── UIView+XHFindViewController.m ├── XHTextField.bundle │ ├── VineLogo@2x.png │ ├── female@2x.png │ ├── lock.png │ ├── lock@2x.png │ ├── mail.png │ ├── mail@2x.png │ ├── male@2x.png │ ├── user.png │ └── user@2x.png ├── XHTextField.h ├── XHTextField.m ├── XHTextFieldScrollView.h └── XHTextFieldScrollView.m └── XHTextField.podspec /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackTeam/XHTextField/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackTeam/XHTextField/HEAD/LICENSE -------------------------------------------------------------------------------- /Project/XHTextField.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackTeam/XHTextField/HEAD/Project/XHTextField.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Project/XHTextField.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackTeam/XHTextField/HEAD/Project/XHTextField.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Project/XHTextField/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackTeam/XHTextField/HEAD/Project/XHTextField/AppDelegate.h -------------------------------------------------------------------------------- /Project/XHTextField/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackTeam/XHTextField/HEAD/Project/XHTextField/AppDelegate.m -------------------------------------------------------------------------------- /Project/XHTextField/CustomUITextField.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackTeam/XHTextField/HEAD/Project/XHTextField/CustomUITextField.h -------------------------------------------------------------------------------- /Project/XHTextField/CustomUITextField.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackTeam/XHTextField/HEAD/Project/XHTextField/CustomUITextField.m -------------------------------------------------------------------------------- /Project/XHTextField/Images.xcassets/AppIcon.appiconset/120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackTeam/XHTextField/HEAD/Project/XHTextField/Images.xcassets/AppIcon.appiconset/120.png -------------------------------------------------------------------------------- /Project/XHTextField/Images.xcassets/AppIcon.appiconset/152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackTeam/XHTextField/HEAD/Project/XHTextField/Images.xcassets/AppIcon.appiconset/152.png -------------------------------------------------------------------------------- /Project/XHTextField/Images.xcassets/AppIcon.appiconset/72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackTeam/XHTextField/HEAD/Project/XHTextField/Images.xcassets/AppIcon.appiconset/72.png -------------------------------------------------------------------------------- /Project/XHTextField/Images.xcassets/AppIcon.appiconset/76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackTeam/XHTextField/HEAD/Project/XHTextField/Images.xcassets/AppIcon.appiconset/76.png -------------------------------------------------------------------------------- /Project/XHTextField/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackTeam/XHTextField/HEAD/Project/XHTextField/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Project/XHTextField/Images.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackTeam/XHTextField/HEAD/Project/XHTextField/Images.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /Project/XHTextField/Images.xcassets/LaunchImage.launchimage/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackTeam/XHTextField/HEAD/Project/XHTextField/Images.xcassets/LaunchImage.launchimage/Default-568h@2x.png -------------------------------------------------------------------------------- /Project/XHTextField/Images.xcassets/LaunchImage.launchimage/Default-Portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackTeam/XHTextField/HEAD/Project/XHTextField/Images.xcassets/LaunchImage.launchimage/Default-Portrait.png -------------------------------------------------------------------------------- /Project/XHTextField/Images.xcassets/LaunchImage.launchimage/Default-Portrait@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackTeam/XHTextField/HEAD/Project/XHTextField/Images.xcassets/LaunchImage.launchimage/Default-Portrait@2x.png -------------------------------------------------------------------------------- /Project/XHTextField/Images.xcassets/LaunchImage.launchimage/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackTeam/XHTextField/HEAD/Project/XHTextField/Images.xcassets/LaunchImage.launchimage/Default@2x.png -------------------------------------------------------------------------------- /Project/XHTextField/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackTeam/XHTextField/HEAD/Project/XHTextField/ViewController.h -------------------------------------------------------------------------------- /Project/XHTextField/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackTeam/XHTextField/HEAD/Project/XHTextField/ViewController.m -------------------------------------------------------------------------------- /Project/XHTextField/XHTextField-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackTeam/XHTextField/HEAD/Project/XHTextField/XHTextField-Info.plist -------------------------------------------------------------------------------- /Project/XHTextField/XHTextField-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackTeam/XHTextField/HEAD/Project/XHTextField/XHTextField-Prefix.pch -------------------------------------------------------------------------------- /Project/XHTextField/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Project/XHTextField/iPad.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackTeam/XHTextField/HEAD/Project/XHTextField/iPad.storyboard -------------------------------------------------------------------------------- /Project/XHTextField/iPhone.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackTeam/XHTextField/HEAD/Project/XHTextField/iPhone.storyboard -------------------------------------------------------------------------------- /Project/XHTextField/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackTeam/XHTextField/HEAD/Project/XHTextField/main.m -------------------------------------------------------------------------------- /Project/XHTextFieldTests/XHTextFieldTests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackTeam/XHTextField/HEAD/Project/XHTextFieldTests/XHTextFieldTests-Info.plist -------------------------------------------------------------------------------- /Project/XHTextFieldTests/XHTextFieldTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackTeam/XHTextField/HEAD/Project/XHTextFieldTests/XHTextFieldTests.m -------------------------------------------------------------------------------- /Project/XHTextFieldTests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackTeam/XHTextField/HEAD/README.md -------------------------------------------------------------------------------- /Screenshots/TextField.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackTeam/XHTextField/HEAD/Screenshots/TextField.gif -------------------------------------------------------------------------------- /Source/UIView+XHFindViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackTeam/XHTextField/HEAD/Source/UIView+XHFindViewController.h -------------------------------------------------------------------------------- /Source/UIView+XHFindViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackTeam/XHTextField/HEAD/Source/UIView+XHFindViewController.m -------------------------------------------------------------------------------- /Source/XHTextField.bundle/VineLogo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackTeam/XHTextField/HEAD/Source/XHTextField.bundle/VineLogo@2x.png -------------------------------------------------------------------------------- /Source/XHTextField.bundle/female@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackTeam/XHTextField/HEAD/Source/XHTextField.bundle/female@2x.png -------------------------------------------------------------------------------- /Source/XHTextField.bundle/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackTeam/XHTextField/HEAD/Source/XHTextField.bundle/lock.png -------------------------------------------------------------------------------- /Source/XHTextField.bundle/lock@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackTeam/XHTextField/HEAD/Source/XHTextField.bundle/lock@2x.png -------------------------------------------------------------------------------- /Source/XHTextField.bundle/mail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackTeam/XHTextField/HEAD/Source/XHTextField.bundle/mail.png -------------------------------------------------------------------------------- /Source/XHTextField.bundle/mail@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackTeam/XHTextField/HEAD/Source/XHTextField.bundle/mail@2x.png -------------------------------------------------------------------------------- /Source/XHTextField.bundle/male@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackTeam/XHTextField/HEAD/Source/XHTextField.bundle/male@2x.png -------------------------------------------------------------------------------- /Source/XHTextField.bundle/user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackTeam/XHTextField/HEAD/Source/XHTextField.bundle/user.png -------------------------------------------------------------------------------- /Source/XHTextField.bundle/user@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackTeam/XHTextField/HEAD/Source/XHTextField.bundle/user@2x.png -------------------------------------------------------------------------------- /Source/XHTextField.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackTeam/XHTextField/HEAD/Source/XHTextField.h -------------------------------------------------------------------------------- /Source/XHTextField.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackTeam/XHTextField/HEAD/Source/XHTextField.m -------------------------------------------------------------------------------- /Source/XHTextFieldScrollView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackTeam/XHTextField/HEAD/Source/XHTextFieldScrollView.h -------------------------------------------------------------------------------- /Source/XHTextFieldScrollView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackTeam/XHTextField/HEAD/Source/XHTextFieldScrollView.m -------------------------------------------------------------------------------- /XHTextField.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackTeam/XHTextField/HEAD/XHTextField.podspec --------------------------------------------------------------------------------