iOS開發-UI (五)UITextField,-uiuitextfield

來源:互聯網
上載者:User

iOS開發-UI (五)UITextField,-uiuitextfield

UITextField使用

 

   1.建立方式

 例:

  UITextField *text = [[UITextField alloc]initWithFrame:CGRectMake(20, 20, 130, 30)];

   2.常用方法和屬性

     1)邊框樣式

       @property(nonatomic)  UITextBorderStyle   borderStyle; 

UITextBorderStyleNone                       沒有邊框,背景預設為透明

UITextBorderStyleLine                       線框,背景預設為透明

UITextBorderStyleBezel bezel           風格邊框,背景預設為透明

UITextBorderStyleRoundedRect         圓角邊框,背景預設為白色

textField.borderStyle = UITextBorderStyleBezel;

 

     2)提示文字: placeholder 

textField.placeholder = @"請輸入銀行卡密碼";

     3)鍵盤類型: keyboardType

textField.keyboardType = UIKeyboardTypeNumberPad;

     4)鍵盤樣式: keyboardAppearance

textField.keyboardAppearance = UIKeyboardAppearanceLight;

     5)密文輸入: secureTextEntry 

textField.secureTextEntry = YES;

     6)再次編輯是否清空: clearsOnBeginEditing

textField.clearsOnBeginEditing = YES;

     7)文本橫向對齊: textAlignment

textField.textAlignment = NSTextAlignmentRight;

     8)文本滾動: adjustsFontSizeToFitWidth 

搭配 minimumFontSize一起使用

 

 

//回收鍵盤

    [self.view endEditing: YES];

 

     9)return鍵類型:returnKeyType

@property(nonatomic) UIReturnKeyType returnKeyType; 

UIReturnKeyDefault,

    UIReturnKeyGo,

    UIReturnKeyGoogle,

    UIReturnKeyJoin,

    UIReturnKeyNext,

    UIReturnKeyRoute,

    UIReturnKeySearch,

    UIReturnKeySend,

    UIReturnKeyYahoo,

    UIReturnKeyDone,

    UIReturnKeyEmergencyCall,

 

 

     10)清理按鈕模式:clearButtonMode

@property(nonatomic)        UITextFieldViewMode  clearButtonMode;

 

UITextFieldViewModeNever,

    UITextFieldViewModeWhileEditing,

    UITextFieldViewModeUnlessEditing,

    UITextFieldViewModeAlways

 

   3.UITextFieldDelegate 協議

     1)是否可以進入編輯模式

     - (BOOL)textFieldShouldBeginEditing:(UITextField *)textField;

//返回NO,無法進入編輯狀態

    return YES;

     2)文字框已經進入編輯模式

     -(void)textFieldDidBeginEditing:(UITextField *)textField;

 

     3)文字框是否可以結束編輯模式

     -(BOOL)textFieldShowEndEditing:(UITextField *)textField;

//返回NO,無法結束編輯狀態

    return YES;

 

     4)文字框已結束編輯模式

     -(void)textFieldDidEndEditing:(UITextField *)textField;

 

     5)是否可以點擊clear按鈕

     -(BOOL)textFieldShouldClear:(UITextField *)textField;

//返回NO,點擊clear按鈕無響應

    return YES;

 

     6)是否可以點擊return按鈕

     -(BOOL)textFieldShouldReturn:(UITextField *)textField;

 

    //移除第一響應者

    [textField resignFirstResponder];   

    return YES;

 

     7)允許修改內容

     

- (BOOL)textField:(UITextField *)textField shouldChangeCharactersInRange:(NSRange)range     replacementString:(NSString *)string;  例如:if (textField.text.length >= 6) {              if ([string isEqualToString:@""]) {            return YES;        }        return NO;    }    return YES; }

 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.