iOS UITextField輸入後隱藏鍵盤

2021-09-06 10:46:23 字數 691 閱讀 1618

1.首先在inte***ce builder中選擇textfields,然後在text field attributes中找到text input traits,選擇return key為done。

2.定義方法

- (ibaction) textfielddoneediting:(id)sender;                        //

按下done鍵關閉鍵盤

//

按完done鍵以後關閉鍵盤

-(ibaction) textfielddoneediting:(id)sender

3.然後找到事件did end on exit,與textfielddoneediting關聯,ok。

4.如果是數字鍵盤,沒有done鍵怎麼辦呢,我們通過觸控背景關閉鍵盤

定義方法

- (ibaction) backgroundtap:(id)sender;                                        //

通過觸控背景關閉鍵盤

實現方法

//通過觸控背景關閉鍵盤

-(ibaction) backgroundtap:(id)sender

然後選擇背景的touch down事件,關聯 backgroundtap,ok

iOS UITextField 基本操作

uitextfield usernametextfield uitextfield alloc init usernametextfield.frame cgrectmake 30,100,220,50 self.window addsubview usernametextfield usernam...

iOS UITextField常用屬性歸納

本文 1 可以根據需要設定文字框的樣式 包括形狀 邊框顏色 背景等 2 可以根據需要設定文字顯示樣式 包括輸入密碼時的密文顯示 文字橫向居中 縱向居中上下 輸入的文字是否首席木大寫 文字超過後是否縮小還是向右滾動等 3 可以根據需要設定各種不同的鍵盤樣式 只有數字 只有字母等等 4 還有inputv...

iOS UITextfield 驗證郵箱格式

做登入介面時,使用者在uitextfield中輸入輸入郵箱賬號後,我們應該在本地驗證格式是否正確,再將引數傳給伺服器驗證。最簡單的就是利用系統的nspredicate 利用正規表示式驗證 bool isvalidateemail nsstring email nspredicate emailtes...