關於UILabel

一:建立一個label字體

UILabel *label = [[UILabel alloc]initWithFrame:CGRectMake(15, 100, 345, 100)];spa

二:UILabel的一些屬性blog

(1) 設置文字:label.text =   @"這是個人一個Label";it

(2) 設置文字顏色:label.textColor = [UIColor redColor];class

(3) 對齊方式:label.textAlignment = NSTextAlignmentCenter;im

(4) 字體:label.font = [UIFont systemFontOfSize:30.f];img

(5) 獲取字體:NSLog(@"%@",[UIFont familyNames]);tab

(6) 設置行數:label.numberOfLines = 0;co

(7) 設置字體陰影:label.shadowColor = [UIColor cyanColor];background

    label.shadowOffset = CGSizeMake(2, 1);

(8) 設置label的顏色:label.backgroundColor = [UIColor blackColor];

效果以下:

相關文章
相關標籤/搜索