iOS UI常用元件之 UILabel

2021-07-25 18:56:28 字數 1127 閱讀 4303

ios – ui常用元件之. uilabel

靜態文字框

// 常用設定

mylabel.text = @"label "

;[mylabel setfont:[uifont systemfontofsize:14]];

[mylabel sizetofit]; // 適應文字大小

mylabel.backgroundcolor = [uicolor graycolor]; //背景色

mylabel.textcolor = [uicolor redcolor]; //字型顏色

mylabel.numberoflines = 0

; // 不限制行數

alabel.textalignment = nstextalignmentcenter;//對齊方式

// 設定行間距

nsmutableparagraphstyle *paragraghstyle = [[nsmutableparagraphstyle alloc] init];

[paragraghstyle setlinespacing:10];//設定行間距

poemcontentlabel.attributedtext = [[nsmutableattributedstring alloc] initwithstring:mytext

attributes:@]; // 設定label的attributedtext

mylabel.textalignment = nstextalignmentcenter;

mylabel.numberoflines = 0

;[self.view addsubview:mylabel];

cgsize mylabelsize = [mylabel sizethatfits: cgsizemake(self.view

.bounds

.size

.width, cgfloat_max)];

poemcontentlabel.frame = cgrectmake(0, 150, self.view

.bounds

.size

.width, mylabelsize.height);//設定frame

iOS UI常用控制項

屬性標籤 使得成為全域性變數 property nonatomic,strong 型別 自定義名稱 標題標籤 property nonatomic,strong uilabel titlelabel 左邊按鈕 property nonatomic,strong uibutton leftbtn 右邊...

iOS UI控制項之UIButton

恢復內容開始 狀態 uicontrolevents 的取值 typedef ns options nsuinteger,uicontrolevents 設定button內部文字和的方法 void settitle nsstring title forstate uicontrolstate stat...

iOS UI 基本控制項之UISwitch

uiswitch 開關,預設為關 ios開發中必不可少的基本控制項,主要用於只有兩種的選擇,比如飛行模式等等,本文主要是列出常用的屬性及方法 注xcode版本為7.2 預設狀態 屬性 property nullable nonatomic strong uicolor ontintcolor 開著的...