//設(shè)置輸入框占位字符的顏色
_Txt.attributedPlaceholder = [[NSAttributedString alloc] initWithString:_Txt.placeholder attributes:@{
NSForegroundColorAttributeName: kColorWithHexString(0xA6A5AB)}];
設(shè)置text右側(cè)清除按鈕
self.textField.clearButtonMode = UITextFieldViewModeAlways;
設(shè)置text的邊框樣式(圓角)
text.borderStyle = UITextBorderStyleRoundedRect;
設(shè)置text左側(cè)圖片
textFiled.leftViewMode=UITextFieldViewModeAlways;
textFiled.leftView=[[UIImageViewalloc]initWithImage:[UIImageimageNamed:image]];
設(shè)置text默認(rèn)顯示文字(但是不作為文本內(nèi)容的一部分)
text.placeholder = @"請(qǐng)輸入用戶名";
設(shè)置text文字
text.text = @"什么";
設(shè)置文本顏色
text.textColor = [UIColor blackColor];
設(shè)置文本的對(duì)齊方式
text.textAlignment = NSTextAlignmentCenter;
設(shè)置文字字體
text.font = [UIFont systemFontOfSize:18];
設(shè)置輸入框是否可編輯
text.enabled = YES;
設(shè)置當(dāng)開(kāi)始編輯時(shí),是否清除框中內(nèi)容
text.clearsOnBeginEditing = YES;
設(shè)置密碼格式(輸入框中內(nèi)容是否以點(diǎn)的形式顯示)
text.secureTextEntry = YES;
設(shè)置彈出鍵盤的樣式(數(shù)字鍵盤)
text.keyboardType = UIKeyboardTypeNumberPad;
鍵盤右下角顯示樣式
text.returnKeyType = UIReturnKeyGo;