UITextField
文章平均质量分 59
xiaoxiaokui2014
现在开始还不晚。。。
展开
-
UITextField点击textField外任意区域键盘回收(一)---- [UIAppllication shareApplication]
最近做的项目用到好多textField, 涉及到键盘回收,键盘挡住textField 上移textField等,自己水平不够,深感textfield好复杂,想好好整理下自己会得用法,继续学习不会的用法。。键盘回收有好多中方法:UITextFieldDelegate, 在self.view上添加UIControl, TouchesBegan方法,[UIAppllication shareAppl原创 2015-11-25 16:36:32 · 1940 阅读 · 1 评论 -
UITextField 设置placeholder的颜色
设置textField placeholder的颜色方法://第一种 UIColor *color = [UIColor whiteColor]; _textField.attributedPlaceholder = [[NSAttributedString alloc] initWithString:@"用户名" attributes:@{NSForegroundC原创 2015-11-25 17:30:16 · 446 阅读 · 0 评论 -
UITextField点击textField外任意区域键盘回收(二)---- TouchesBegan
最近做的项目用到好多textField, 涉及到键盘回收,键盘挡住textField 上移textField等,自己水平不够,深感textfield好复杂,想好好整理下自己会得用法,继续学习不会的用法。。键盘回收有好多中方法:UITextFieldDelegate, 在self.view上添加UIControl, TouchesBegan方法,[UIAppllication shareAppl原创 2015-11-25 16:46:21 · 1051 阅读 · 0 评论 -
UITextField 被键盘挡住时自动上移调整textField frame
#pragma mark - textFieldDelegate 被键盘挡住时能自动调整textField frame, 回收键盘时frame能还原-(BOOL)textFieldShouldReturn:(UITextField *)textField//如果工程里还用的其他回收键盘的方法 如UIApplication ShareApplication或者touchBegan 则原创 2015-12-02 11:36:59 · 480 阅读 · 0 评论 -
UITextField setInputAccessaryView / setInputView
UITextField InputAccessaryView + InputView#import #import "BaseViewController.h"@interface LoginViewController : BaseViewController@property (weak, nonatomic) IBOutlet UITextField *n原创 2016-03-14 20:06:49 · 656 阅读 · 0 评论 -
修改textFieldplaceholder字体颜色和大小
修改textFieldplaceholder字体颜色和大小 textField.placeholder = @"Username!"; [textField setValue:[UIColor redColor] forKeyPath:@"_placeholderLabel.textColor"]; [textField setValue:[UIFont boldSystemFontO原创 2016-05-10 22:04:04 · 681 阅读 · 0 评论