UI基礎之UITextField相關

2022-09-06 20:33:11 字數 1441 閱讀 7727

uitextfield *textf = [[uitextfield alloc] init];

1、字型相關

textf.text = @"

文字框文字";

textf.textcolor = [uicolor bluecolor]; //

字型顏色

textf.textalignment = nstextalignmentcenter; //

文字對齊方式

textf.font = [uifont systemfontofsize:13.0]; //

設定字型大小

textf.font = [uifont boldsystemfontofsize:13.0]; //

設定加粗字型大小

textf.font = [uifont fontwithname:@"

arial

" size:13.0]; //

設定字型樣式及大小

2、邊框

textf.borderstyle = uitextborderstyleroundedrect;   //

邊框樣式

3、背景相關

textf.backgroundcolor = [uicolor whitecolor];   //

背景顏色

textf.background = [uiimage imagenamed:@"a"

]; textf.disabledbackground = [uiimage imagenamed:@"

b"];

4、清除按鈕

textf.clearbuttonmode = uitextfieldviewmodewhileediting;    //

當編輯時顯示

5、佔位文字

textf.placeholder = @"

佔位文字

";

6、游標相關

textf.tintcolor = [uicolor redcolor];

7、文字安全性

textf.securetextentry = yes;    //

文字安全性(用於密碼顯示)

8、清空文字框

textf.clearsonbeginediting = yes;   //

再次編輯清空

9、鍵盤

textf.keyboardtype = uikeyboardtypenumberpad;   //

數字鍵盤

10、回車鍵樣式

textf.returnkeytype = uireturnkeydone;  //

確認

iOS開發之UI基礎 KVC

k vc key value coding 1.字典轉模型 dic answer dic icon dic title dic options kvc 把字典中的值,賦給當前物件制定的屬性 answer self setvalue dic answer forkeypath answer 遍歷字典中...

UI基礎學習之(十四) 手勢

接上篇 transform 手勢配合使用transform 手勢可以新增在任何想要的地方,一般新增在imageview上。gesturerecognizer 手勢識別器 使用手勢,首先要確定控制項的手勢互動式開啟的 開啟互動 self.rv.imv.userinteractionenabled ye...

IOS開發UI基礎之綜合應用

好處 inte ce viewcontroller property nonatomic,strong nsarray shops end implementation viewcontroller 重寫getter方法 nsarray shops return shops end 獲取plist檔...