UITextField的基礎使用方法

2021-06-27 19:41:11 字數 871 閱讀 9457

設定文字框樣式:

atext.

borderstyle

= uitextborderstyleroundedrect;

使文字框內自體變成淺灰色:

atext.

placeholder

= @"shoujihao";

設定文字框內字型位置:

[atext settextalignment:nstextalignmentcenter];

是否允許輸入:(預設yes,允許輸入):

atext.enabled = yes;

是否開始輸入的時候清空輸入框內容:

atext.clearsonbeginediting=

yes;//清空

是否文字以圓點模式顯示:

atext.securetextentry=

yes;//密碼模式

彈出鍵盤的型別(列舉值):

atext.keyboardtype= uikeyboardtypenumberpad;//數字鍵盤

鍵盤右下角return按鈕型別(列舉值):

atext.returnkeytype= uireturnkeynext;

自定義輸入檢視(預設是鍵盤):

atext.inputview = myinputview;

輸入檢視上方的輔助檢視(預設nil):

atext.inputaccessoryview = myaccessoryview;

清除按鈕模式(列舉值):

atext.clearbuttonmode= uitextfieldviewmodealways;//總是顯示清除按鈕

輸入框左檢視:

atext.leftview = leftview;

本文來介紹UITextField控制項的使用!

本文來介紹uitextfield控制項的使用!初始化左右 uiimageview leftimg uiimageview alloc initwithimage uiimage imagenamed right img.png uiimageview rightimg uiimageview all...

UI基礎之UITextField相關

uitextfield textf uitextfield alloc init 1 字型相關 textf.text 文字框文字 textf.textcolor uicolor bluecolor 字型顏色 textf.textalignment nstextalignmentcenter 文字對齊...

ios基礎控制項之UITextField常用方法彙總

文字控制項 uitextfield 繼承了uicontrol控制項,所以作為活動控制項使用!建立該控制項有兩種方法 一 拖控制項。二 純 搞定。其實本質一樣。不過還是建議採用純 這樣對控制項的可定製性非常高。textfield uitextfield alloc initwithframe cgre...