UI程式設計 UILabel及其屬性

2021-07-03 17:57:01 字數 1275 閱讀 4005

//

// ui01_uilabel

//// created by dllo on 15/7/10.

//@end

self.window = [[uiwindow alloc] initwithframe:[[uiscreen mainscreen] bounds]];

self.window.backgroundcolor = [uicolor whitecolor];

[self.window makekeyandvisible];

#pragma mark - 知識點2 uilabel

/* 建立label物件 */

uilabel *userlabel = [[uilabel alloc] initwithframe:cgrectmake(40, 100, 300, 200)];

userlabel.backgroundcolor = [uicolor yellowcolor];

[self.window addsubview:userlabel];

/* 設定相關的屬性(常用api), attribute text調研 */

userlabel.text = @"使用者名稱戶名使用者名稱名用名:";

/* font 屬性, uifont類, 調研一下(如何更改字型, 如何載入第三方字型) */

userlabel.font = [uifont systemfontofsize:26];

/* 文字顏色 調研一下(自定義顏色)*/

userlabel.textcolor = [uicolor darkgraycolor];

/* 對齊方式 */

userlabel.textalignment = nstextalignmentright;

/* 斷行模式(省略) */

userlabel.linebreakmode = nslinebreakbytruncatingmiddle;

/* 行數設定(設定為0:不受行數限制, 並且不會超過labele的限制) */

userlabel.numberoflines = 0;

/* 陰影設定 */

userlabel.shadowcolor = [uicolor redcolor];

userlabel.shadowoffset = cgsizemake(0, 2);

[userlabel release];

[_window release];

return yes;

}@end

UILabel及其方法

uilabel 可以顯示文字內容的色塊 1.建立乙個uilabel 方式同uiview 1 4 2.顯示文字內容 label.text gfdgfd,gfdghjghgjhgj,gdfgf,gffhgfh,jkhku,3.給label加上乙個邊框 寬度 並且給他加上乙個弧度 label.layer....

UILabel屬性總結

1.設定粗體 alabel2 font uifont boldsystemfontofsize 20 2.判斷字型大小適應label寬度 alabel1 adjustsfontsizetofitwidth yes 3.設定高亮,只有highlighted 為yes字型才顯示高亮的顏色,配套使用.al...

UILabel的各種屬性

uilable是iphone介面最基本的控制項,主要用來顯示文字資訊。常用屬性和方法有 1 建立 cgrect rect cgrectmake 100,200,50,50 uilabel label uilabel alloc initwithframe rect 2 text 設定和讀取文字內容,...