UILabel及其方法

2021-07-07 04:55:11 字數 925 閱讀 7947

// uilabel

// 可以顯示文字內容的色塊

// 1.建立乙個uilabel

方式同uiview 1 ~ 4

// 2.顯示文字內容

label.text = @"gfdgfd,gfdghjghgjhgj,gdfgf,gffhgfh,jkhku,";

// 3.給label加上乙個邊框(寬度),並且給他加上乙個弧度

label.layer.borderwidth = 1;

label.layer.cornerradius = 10;

// 4.讓label多餘部分隱藏掉

label.layer.maskstobounds = yes;

// 5.修改字型大小

label.font = [uifont systemfontofsize:17];

// 6.修改文字顏色

label.textcolor = [uicolor bluecolor];

// 7.對齊方式 列舉型別

label.textalignment = nstextalignmentleft;

// 8.設定行數 0為最大行數 或輸入 nsintegermax

label.numberoflines = 0;

// 9.設定自動適應文字內容

[label sizetofit];

// 10.陰影顏色和陰影大小 可以設定與字型同一顏色 用來加粗

label.shadowcolor = [uicolor redcolor];

label.shadowoffset = cgsizemake(1, 1);

// 11.調整檢視中心點位置 (也可直接用來根據檢視中心點更改檢視位置)

label.center = cgpointmake(75, 30);

UI程式設計 UILabel及其屬性

ui01 uilabel created by dllo on 15 7 10.end self.window uiwindow alloc initwithframe uiscreen mainscreen bounds self.window.backgroundcolor uicolor wh...

UILabel之純Swift建立及其常見方法

建立uilabel例項物件 let label uilabel 設定文字 label.text content 設定背景顏色 label.backgroundcolor uicolor blue設定文字顏色 label.textbackgroundcolor uicolor black設定文字行數,...

iOS 更改UILabel某些字型樣式方法

str 要改變的字 result 整個label裡的字 color 字的顏色 nsmutableattributedstring changesometext nsstring str程式設計客棧yirzaamx intext nsstring result withcolor uicolor co...