中文:类似微信的用户头像选择、系统信息App的手势控制键盘隐藏,还有自定义9种输入风格,比如输入Email并检查是否正确、输入密码检查是否输入正确、输入生日自动帮你选择星座、自定义textField的leftView的图标等功能,注意:还有输入错误的标识提示哦!
英文:类似于微信的用户头像选择、系统信息App的手势控制键盘隐藏,还有自定义9种输入风格,例如输入Email并检查是否正确、输入密码检查是否输入正确、输入生日时自动帮你选择星座、自定义textField leftView图标等功能,注意:还有输入错误的标识提示!
中文: CocosPods安装XHTextField的推荐方法,只是在Podfile添加以下行
英文: CocosPods is the recommended method of installing XHTextField, just add the following line to Podfile
pod 'XHTextField'
- (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];
}
中文: XHTextField 是在MIT协议下使用的,相关的使用协议信息可以在LICENSE文件中找到。
英文: XHTextField is available under the MIT license, see the LICENSE file for more information.
中文:如果您在您的项目中使用开源组件,请给我们发电子邮件告诉我们您的应用程序的名称,否则后果自负。
英文:If you use open source components in your project, please Email us to tell us the name of your application, otherwise the consequence is yours.