1.設定粗體
alabel2
.font
= [uifont
boldsystemfontofsize:
20];
2.判斷字型大小適應label寬度
alabel1
.adjustsfontsizetofitwidth
=yes;
3.設定高亮,只有highlighted 為yes字型才顯示高亮的顏色,配套使用.
alabel1
.highlighted=no
;alabel1
.highlightedtextcolor
= [uicolor
blackcolor];
4.設定陰影
第乙個橫向 >0 向右 < 0向左
alabel2
.shadowcolor
= [uicolor
redcolor];
第二個縱向 >0 向下 < 0向上
alabel2
.shadowoffset
= cgsizemake(
1.0,
1.0);
5. 設定斷行模式,文字過長的格式.
alabel1
.linebreakmode
alabel2
.linebreakmode
= nslinebreakbyclipping;
enum ;
typedef nsuinteger nslinebreakmode */
// 設定文字基線,如果adjustsfontsizetofitwidth屬性設定為yes,這個屬性就來控制文字基線的行為
6.alabel2
.baselineadjustment
=uibaselineadjustmentnone;
typedef enum uibaselineadjustment;
7.設定文字是否可變,預設是yes
alabel2
.enabled=no
;
iOS開發總結之UILabel常用屬性
ios nsstring text first nsmutableattributedstring textlabelstr nsmutableattributedstring alloc initwithstring text textlabelstr setattributes range ns...
UILabel的各種屬性
uilable是iphone介面最基本的控制項,主要用來顯示文字資訊。常用屬性和方法有 1 建立 cgrect rect cgrectmake 100,200,50,50 uilabel label uilabel alloc initwithframe rect 2 text 設定和讀取文字內容,...
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...