Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/JackTeam/XHTextField
中文:类似微信的用户头像选择、系统信息App的手势控制键盘隐藏,还有自定义9种输入风格,比如输入Email并检查是否正确、输入密码检查是否输入正确、输入生日自动帮你选择星座、自定义textField的leftView的图标等功能,注意:还有输入错误的标识提示哦! English: Like weChat avatars selection, system information App gesture keypad, and custom style 9 kinds of input, such as input Email and check whether it is right, input the password check whether correct, input automatically help you choose birthday constellation, customize the textField leftView ICONS, and other functions, note: there are input error identification tips!
https://github.com/JackTeam/XHTextField
Last synced: 3 months ago
JSON representation
中文:类似微信的用户头像选择、系统信息App的手势控制键盘隐藏,还有自定义9种输入风格,比如输入Email并检查是否正确、输入密码检查是否输入正确、输入生日自动帮你选择星座、自定义textField的leftView的图标等功能,注意:还有输入错误的标识提示哦! English: Like weChat avatars selection, system information App gesture keypad, and custom style 9 kinds of input, such as input Email and check whether it is right, input the password check whether correct, input automatically help you choose birthday constellation, customize the textField leftView ICONS, and other functions, note: there are input error identification tips!
- Host: GitHub
- URL: https://github.com/JackTeam/XHTextField
- Owner: JackTeam
- License: mit
- Created: 2013-12-17T09:38:54.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2017-04-17T00:08:08.000Z (over 7 years ago)
- Last Synced: 2024-07-23T04:02:04.036Z (4 months ago)
- Language: Objective-C
- Homepage:
- Size: 9.76 MB
- Stars: 86
- Watchers: 13
- Forks: 24
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
XHTextField
===========中文:类似微信的用户头像选择、系统信息App的手势控制键盘隐藏,还有自定义9种输入风格,比如输入Email并检查是否正确、输入密码检查是否输入正确、输入生日自动帮你选择星座、自定义textField的leftView的图标等功能,注意:还有输入错误的标识提示哦!
English: micro letter like avatars selection, system information App gesture keypad, and custom style 9 kinds of input, such as input Email and check whether it is right, input the password check whether correct, input automatically help you choose birthday constellation, customize the textField leftView ICONS, and other functions, note: there are input error identification tips!
![image](https://github.com/JackTeam/XHTextField/raw/master/Screenshots/TextField.gif)
##安装
##Installation中文: [CocosPods](http://cocosPods.org)安装XHTextField的推荐方法,只是在Podfile添加以下行:
english: [CocosPods](http://cocosPods.org) is the recommended methods of installation XHTextField, just add the following line to `Profile`:
## Profile
```
pod 'XHTextField'
```## 例子
## Example```objective-c
- (void)_setup {
XHTextField *emailTextField = [[XHTextField alloc] initWithFrame:CGRectMake(0, 0, 100, 35)];
[emailTextField setFieldType:kXHEmailField];
// diss keyboard gesture
UIPanGestureRecognizer *pan = [[UIPanGestureRecognizer alloc] init];
XHTextFieldScrollView *scrollView = [[XHTextFieldScrollView alloc] initWithFrame:self.view.bounds];
[scrollView setDismissivePanGestureRecognizer:pan];
[scrollView addSubview:emailTextField];
[self.view addSubview:scrollView];
}- (void)viewDidLoad {
[self _setup];
}
```### Thank you
[mehfuzh](https://github.com/mehfuzh)
## License
中文: XHTextField 是在MIT协议下使用的,可以在LICENSE文件里面找到相关的使用协议信息.
English: XHTextField is acailable under the MIT license, see the LICENSE file for more information.
=======================
## 须知
中文:如果您在您的项目中使用开源组件,请给我们发[电子邮件](mailto:[email protected]?subject=From%20GitHub%20XHTextField)告诉我们您的应用程序的名称。## Instructions
English:If you use open source components in your project, please [Email us](mailto:[email protected]?subject=From%20GitHub%20XHTextField) to tell us the name of your application.