iOS UITextfield 驗證郵箱格式

2022-03-21 07:13:13 字數 333 閱讀 3443

做登入介面時,使用者在uitextfield中輸入輸入郵箱賬號後,我們應該在本地驗證格式是否正確,再將引數傳給伺服器驗證。

最簡單的就是利用系統的nspredicate

//利用正規表示式驗證

-(bool)isvalidateemail:(nsstring *)email ";

nspredicate *emailtest = [nspredicate

predicatewithformat:@"self matches %@", emailregex];

return [emailtest evaluatewithobject:email];

}

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輸入後隱藏鍵盤

1.首先在inte ce builder中選擇textfields,然後在text field attributes中找到text input traits,選擇return key為done。2.定義方法 ibaction textfielddoneediting id sender 按下done...