ios中uitextfield 使用全面解析
來源:易賢網(wǎng) 閱讀:789 次 日期:2014-11-14 13:38:57
溫馨提示:易賢網(wǎng)小編為您整理了“ios中uitextfield 使用全面解析”,方便廣大網(wǎng)友查閱!

//初始化textfield并設置位置及大小

uitextfield *text = [[uitextfield alloc]initwithframe:cgrectmake(20, 20, 130, 30)];

//設置邊框樣式,只有設置了才會顯示邊框樣式 

text.borderstyle = uitextborderstyleroundedrect;

 typedef enum {

uitextborderstylenone,

uitextborderstyleline,

uitextborderstylebezel,

uitextborderstyleroundedrect

} uitextborderstyle;

//設置輸入框的背景顏色,此時設置為白色 如果使用了自定義的背景圖片邊框會被忽略掉 

  text.backgroundcolor = [uicolor whitecolor];

//設置背景

text.background = [uiimage imagenamed:@dd.png];

//設置背景

text.disabledbackground = [uiimage imagenamed:@cc.png];

//當輸入框沒有內(nèi)容時,水印提示 提示內(nèi)容為password

text.placeholder = @password;

//設置輸入框內(nèi)容的字體樣式和大小

text.font = [uifont fontwithname:@arial size:20.0f];

//設置字體顏色

text.textcolor = [uicolor redcolor];

//輸入框中是否有個叉號,在什么時候顯示,用于一次性刪除輸入框中的內(nèi)容

text.clearbuttonmode = uitextfieldviewmodealways;

typedef enum {

uitextfieldviewmodenever, 重不出現(xiàn)

uitextfieldviewmodewhileediting, 編輯時出現(xiàn)

uitextfieldviewmodeunlessediting, 除了編輯外都出現(xiàn)

uitextfieldviewmodealways  一直出現(xiàn)

} uitextfieldviewmode;

//輸入框中一開始就有的文字

text.text = @一開始就在輸入框的文字;

//每輸入一個字符就變成點 用語密碼輸入

text.securetextentry = yes;

//是否糾錯

text.autocorrectiontype = uitextautocorrectiontypeno;

typedef enum {

uitextautocorrectiontypedefault, 默認

uitextautocorrectiontypeno,  不自動糾錯

uitextautocorrectiontypeyes, 自動糾錯

} uitextautocorrectiontype;

//再次編輯就清空

text.clearsonbeginediting = yes;

//內(nèi)容對齊方式

text.textalignment = uitextalignmentleft;

//內(nèi)容的垂直對齊方式 uitextfield繼承自uicontrol,此類中有一個屬性contentverticalalignment

text.contentverticalalignment = uicontrolcontentverticalalignmentcenter;

//設置為yes時文本會自動縮小以適應文本窗口大小.默認是保持原來大小,而讓長文本滾動 

textfied.adjustsfontsizetofitwidth = yes;

//設置自動縮小顯示的最小字體大小

text.minimumfontsize = 20;

//設置鍵盤的樣式

text.keyboardtype = uikeyboardtypenumberpad;

typedef enum {

uikeyboardtypedefault,  默認鍵盤,支持所有字符

uikeyboardtypeasciicapable, 支持ascii的默認鍵盤

uikeyboardtypenumbersandpunctuation, 標準電話鍵盤,支持+*#字符

uikeyboardtypeurl, url鍵盤,支持.com按鈕 只支持url字符

uikeyboardtypenumberpad,  數(shù)字鍵盤

uikeyboardtypephonepad,   電話鍵盤

uikeyboardtypenamephonepad,  電話鍵盤,也支持輸入人名

uikeyboardtypeemailaddress,  用于輸入電子 郵件地址的鍵盤

uikeyboardtypedecimalpad,  數(shù)字鍵盤 有數(shù)字和小數(shù)點

uikeyboardtypetwitter,  優(yōu)化的鍵盤,方便輸入@、#字符

uikeyboardtypealphabet = uikeyboardtypeasciicapable,

} uikeyboardtype;

//首字母是否大寫

text.autocapitalizationtype = uitextautocapitalizationtypenone;

typedef enum {

uitextautocapitalizationtypenone, 不自動大寫

uitextautocapitalizationtypewords, 單詞首字母大寫

uitextautocapitalizationtypesentences, 句子的首字母大寫

uitextautocapitalizationtypeallcharacters, 所有字母都大寫

} uitextautocapitalizationtype;

//return鍵變成什么鍵

text.returnkeytype =uireturnkeydone;

typedef enum {

uireturnkeydefault, 默認 灰色按鈕,標有return

uireturnkeygo,  標有go的藍色按鈕

uireturnkeygoogle,標有google的藍色按鈕,用語搜索

uireturnkeyjoin,標有join的藍色按鈕

uireturnkeynext,標有next的藍色按鈕

uireturnkeyroute,標有route的藍色按鈕

uireturnkeysearch,標有search的藍色按鈕

uireturnkeysend,標有send的藍色按鈕

uireturnkeyyahoo,標有yahoo的藍色按鈕

uireturnkeyyahoo,標有yahoo的藍色按鈕

uireturnkeyemergencycall, 緊急呼叫按鈕

} uireturnkeytype;

//鍵盤外觀

textview.keyboardappearance=uikeyboardappearancedefault;

typedef enum {

uikeyboardappearancedefault, 默認外觀,淺灰色

uikeyboardappearancealert,   深灰 石墨色

} uireturnkeytype;

//設置代理 用于實現(xiàn)協(xié)議

text.delegate = self;

//把textfield加到視圖中

[self.window addsubview:text];

//最右側(cè)加圖片是以下代碼  左側(cè)類似

uiimageview *image=[[uiimageview alloc] initwithimage:[uiimage imagenamed:@right.png]];

text.rightview=image;

text.rightviewmode = uitextfieldviewmodealways;

typedef enum {

uitextfieldviewmodenever,

uitextfieldviewmodewhileediting,

uitextfieldviewmodeunlessediting,

uitextfieldviewmodealways

} uitextfieldviewmode;

//按return鍵鍵盤往下收 becomefirstresponder

類要采用uitextfielddelegate協(xié)議

text.delegate = self; 聲明text的代理是我,我會去實現(xiàn)把鍵盤往下收的方法 這個方法在uitextfielddelegate里所以我們要采用uitextfielddelegate這個協(xié)議

- (bool)textfieldshouldreturn:(uitextfield *)textfield

{

[text resignfirstresponder]; //主要是[receiver resignfirstresponder]在哪調(diào)用就能把receiver對應的鍵盤往下收

return yes;

}

重寫繪制行為

除了uitextfield對象的風格選項,你還可以定制化uitextfield對象,為他添加許多不同的重寫方法,來改變文本字段的顯示行為。這些方法都會返回一個cgrect結(jié)構(gòu),制定了文本字段每個部件的邊界范圍。以下方法都可以重寫。

– textrectforbounds:  //重寫來重置文字區(qū)域

– drawtextinrect:  //改變繪文字屬性.重寫時調(diào)用super可以按默認圖形屬性繪制,若自己完全重寫繪制函數(shù),就不用調(diào)用super了.

– placeholderrectforbounds://重寫來重置占位符區(qū)域

– drawplaceholderinrect://重寫改變繪制占位符屬性.重寫時調(diào)用super可以按默認圖形屬性繪制,若自己完全重寫繪制函數(shù),就不用調(diào)用super了.

– borderrectforbounds://重寫來重置邊緣區(qū)域

– editingrectforbounds://重寫來重置編輯區(qū)域

– clearbuttonrectforbounds://重寫來重置clearbutton位置,改變size可能導致button的圖片失真

– leftviewrectforbounds:

– rightviewrectforbounds:

委托方法

- (bool)textfieldshouldbeginediting:(uitextfield *)textfield{ 

//返回一個bool值,指定是否循序文本字段開始編輯 

return yes; 

} 

- (void)textfielddidbeginediting:(uitextfield *)textfield{ 

//開始編輯時觸發(fā),文本字段將成為first responder 

} 

- (bool)textfieldshouldendediting:(uitextfield *)textfield{ 

//返回bool值,指定是否允許文本字段結(jié)束編輯,當編輯結(jié)束,文本字段會讓出first responder 

  //要想在用戶結(jié)束編輯時阻止文本字段消失,可以返回no 

  //這對一些文本字段必須始終保持活躍狀態(tài)的程序很有用,比如即時消息 

 

return no; 

} 

- (bool)textfield:(uitextfield*)textfield shouldchangecharactersinrange:(nsrange)range replacementstring:(nsstring *)string{ 

//當用戶使用自動更正功能,把輸入的文字修改為推薦的文字時,就會調(diào)用這個方法。 

//這對于想要加入撤銷選項的應用程序特別有用 

//可以跟蹤字段內(nèi)所做的最后一次修改,也可以對所有編輯做日志記錄,用作審計用途。

//要防止文字被改變可以返回no 

//這個方法的參數(shù)中有一個nsrange對象,指明了被改變文字的位置,建議修改的文本也在其中 

  return yes; 

} 

- (bool)textfieldshouldclear:(uitextfield *)textfield{ 

//返回一個bool值指明是否允許根據(jù)用戶請求清除內(nèi)容 

//可以設置在特定條件下才允許清除內(nèi)容 

  return yes; 

} 

-(bool)textfieldshouldreturn:(uitextfield *)textfield{ 

//返回一個bool值,指明是否允許在按下回車鍵時結(jié)束編輯 

//如果允許要調(diào)用resignfirstresponder 方法,這回導致結(jié)束編輯,而鍵盤會被收起[textfield resignfirstresponder];

//查一下resign這個單詞的意思就明白這個方法了 

  return yes; 

} 

通知

uitextfield派生自uicontrol,所以uicontrol類中的通知系統(tǒng)在文本字段中也可以使用。除了uicontrol類的標準事件,你還可以使用下列uitextfield類特有的事件

uitextfieldtextdidbegineditingnotification

uitextfieldtextdidchangenotification

uitextfieldtextdidendeditingnotification

當文本字段退出編輯模式時觸發(fā)。通知的object屬性存儲了最終文本。

因為文本字段要使用鍵盤輸入文字,所以下面這些事件發(fā)生時,也會發(fā)送動作通知

uikeyboardwillshownotification  //鍵盤顯示之前發(fā)送

uikeyboarddidshownotification  //鍵盤顯示之后發(fā)送

uikeyboardwillhidenotification  //鍵盤隱藏之前發(fā)送

uikeyboarddidhidenotification  //鍵盤隱藏之后發(fā)送

名單

1、text :設置文本框的默認文本。

2、placeholder : 可以在文本框中顯示灰色的字,用于提示用戶應該在這個文本框輸入什么內(nèi)容。當這個文本框中輸入了數(shù)據(jù)時,用于提示的灰色的字將會自動消失。

3、background :

4、disabled : 若選中此項,用戶將不能更改文本框內(nèi)容。

5、接下來是三個按鈕,用來設置對齊方式。

6、border style : 選擇邊界風格。

7、clear button : 這是一個下拉菜單,你可以選擇清除按鈕什么時候出現(xiàn),所謂清除按鈕就是出一個現(xiàn)在文本框右邊的小 x ,你可以有以下選擇:

7.1 never appears : 從不出現(xiàn)

7.2 appears while editing : 編輯時出現(xiàn)

7.3 appears unless editing :

7.4 is always visible : 總是可見

8、clear when editing begins : 若選中此項,則當開始編輯這個文本框時,文本框中之前的內(nèi)容會被清除掉。比如,你現(xiàn)在這個文本框 a 中輸入了 what ,之后去編輯文本框 b,若再回來編輯文本框 a ,則其中的 what 會被立即清除。

9、text color : 設置文本框中文本的顏色。

10、font : 設置文本的字體與字號。

11、min font size : 設置文本框可以顯示的最小字體(不過我感覺沒什么用)

12、adjust to fit : 指定當文本框尺寸減小時,文本框中的文本是否也要縮小。選擇它,可以使得全部文本都可見,即使文本很長。但是這個選項要跟 min font size 配合使用,文本再縮小,也不會小于設定的 min font size 。

接下來的部分用于設置鍵盤如何顯示。

13、captitalization : 設置大寫。下拉菜單中有四個選項:

13.1 none : 不設置大寫

13.2 words : 每個單詞首字母大寫,這里的單詞指的是以空格分開的字符串

13.3 sentances : 每個句子的第一個字母大寫,這里的句子是以句號加空格分開的字符串

13.4 all characters : 所以字母大寫

14、correction : 檢查拼寫,默認是 yes 。

15、keyboard : 選擇鍵盤類型,比如全數(shù)字、字母和數(shù)字等。

16、appearance:

17、return key : 選擇返回鍵,可以選擇 search 、 return 、 done 等。

18、auto-enable return key : 如選擇此項,則只有至少在文本框輸入一個字符后鍵盤的返回鍵才有效。

19、secure : 當你的文本框用作密碼輸入框時,可以選擇這個選項,此時,字符顯示為星號。

名單

1.alignment horizontal 水平對齊方式

2.alignment vertical 垂直對齊方式

3.用于返回一個bool值 輸入框是否 selected(選中) enabled(可用) highlighted(高亮)

限制只能輸入特定的字符

(bool)textfield:(uitextfield *)textfield shouldchangecharactersinrange:(nsrange)range replacementstring:(nsstring *)string{

nscharacterset *cs;

cs = [[nscharacterset charactersetwithcharactersinstring:numbers]invertedset];

nsstring *filtered = [[string componentsseparatedbycharactersinset:cs]componentsjoinedbystring:@]; //按cs分離出數(shù)組,數(shù)組按@分離出字符串

bool canchange = [string isequaltostring:filtered];

return canchange;

}

上面那個numbers是一個宏,可以在文件頂部定義:

#define numbers @”0123456789n” (這個代表可以輸入數(shù)字和換行,請注意這個n,如果不寫這個,done按鍵將不會觸發(fā),如果用在searchbar中,將會不觸發(fā)search事件,因為你自己限制不讓輸入n,好慘,我在項目中才發(fā)現(xiàn)的。)

所以,如果你要限制輸入英文和數(shù)字的話,就可以把這個定義為:

#define kalphanum @”abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyz0123456789″。

當然,你還可以在以上方法return之前,做一提示的,比如提示用戶只能輸入數(shù)字之類的。如果你覺得有需要的話。

限制只能輸入一定長度的字符

- (bool)textfield:(uitextfield *)textfield shouldchangecharactersinrange:(nsrange)range replacementstring:(nsstring *)string;

{ //string就是此時輸入的那個字符 textfield就是此時正在輸入的那個輸入框 返回yes就是可以改變輸入框的值 no相反

if ([string isequaltostring:@n]) //按會車可以改變

{

return yes;

}

nsstring * tobestring = [textfield.text stringbyreplacingcharactersinrange:range withstring:string]; //得到輸入框的內(nèi)容

if (self.mytextfield == textfield) //判斷是否時我們想要限定的那個輸入框

{

if ([tobestring length] > 20) { //如果輸入框內(nèi)容大于20則彈出警告

textfield.text = [tobestring substringtoindex:20];

uialertview *alert = [[[uialertview alloc] initwithtitle:nil message:@超過最大字數(shù)不能輸入了 delegate:nil cancelbuttontitle:@ok otherbuttontitles:nil, nil] autorelease];

[alert show];

return no;

}

}

return yes;

}

更多信息請查看IT技術專欄

更多信息請查看技術文章
易賢網(wǎng)手機網(wǎng)站地址:ios中uitextfield 使用全面解析

2025國考·省考課程試聽報名

  • 報班類型
  • 姓名
  • 手機號
  • 驗證碼
關于我們 | 聯(lián)系我們 | 人才招聘 | 網(wǎng)站聲明 | 網(wǎng)站幫助 | 非正式的簡要咨詢 | 簡要咨詢須知 | 加入群交流 | 手機站點 | 投訴建議
工業(yè)和信息化部備案號:滇ICP備2023014141號-1 云南省教育廳備案號:云教ICP備0901021 滇公網(wǎng)安備53010202001879號 人力資源服務許可證:(云)人服證字(2023)第0102001523號
聯(lián)系電話:0871-65099533/13759567129 獲取招聘考試信息及咨詢關注公眾號:hfpxwx
咨詢QQ:526150442(9:00—18:00)版權所有:易賢網(wǎng)