ios UILabel簡單使用方法

2021-08-27 23:19:46 字數 1106 閱讀 8744

uilabel簡單使用方法:

//建立uilabel

uilabel *label = [ [uilabel alloc] initwithframe: cgrectmake(20, 20, 200, 200)];

//設定文字

label.text = @"文字內容";

//設定背景色

label.backgroundcolor = [uicolor blackcolor];

//設定字型大小

label.font = [uifont systemfontofsize: 15];

//設定字型粗體 和 大小

label.font = [uifont boldsystemfontofsize: 15];

//設定字型型別 和 大小

label.font = [uifont fontwithname: @arial size: 20];

//設定字型大小適應label寬度

label.adjustsfontsizetofitwidth = yes;

//設定文字顏色

label.textcolor = [uicolor redcolor];

//設定文字對齊方式

label.textalignment = uitextalignmentcenter;

label.textalignment = uitextalignmentright;

//設定陰影

label.shadowcolor = [uicolor redcolor];

label.shadowoffset = cgsizemake(1.0, 1.0);

//設定高亮

label.highlighted = yes;

label.highlightedtextcolor = [uicolor orangecolor];

//設定text是否可變, 預設為yes

label.enabled = no;

//設定文字過長時的顯示格式

label.linebreakmode = uilinebreakmodemiddletruncation; //截去中間

iOS UILabel的使用方法

uilabel常用屬性 uilabel的建立 uilabel label uilabel alloc init 設定label的位置和大小 label.frame cgrectmake 50,50,100,30 設定文字 label.text hello world 設定背景色 label.back...

ios UILabel 的詳細使用及特殊效果

uilabel label uilabelalloc initwithframe cgrectmake 0,0,75,40 宣告uilbel並指定其位置和長寬 label.backgroundcolor uicolorclearcolor 設定label的背景色,這裡設定為透明色。label.fon...

IOS UILabel的一些使用小技巧

nsstring string bla cgsize s string sizewithfont uifont systemfontofsize 20 constrainedtosize cgsizemake self.view.bounds.size.width 40,cgfloat max 40...