Wednesday, October 4, 2017

Căn chỉnh chữ trong Label Swift

Label dùng để hiển thị chữ trong Swift.
Để set chữ ra label, ta dùng lệnh
la.text = “Đây là chữ ví dụ”
Để tô màu chữ, ta dùng lệnh
la.textColor = UIColor.blueColor()
Để thay đổi font chữ, màu chữ, cỡ chữ ta dùng lệnh
let t="Chữ cần set"
let at=NSMutableAttributedString(string: t , attributes: [NSForegroundColorAttributeName: UIColor.blueColor(), NSFontAttributeName: UIFont(name: "Arial", size: 15.0)!])
 la.attributedText(at, forState: .Normal)
Để làm chữ đậm ta dùng lệnh
la.font = UIFont.boldSystemFontOfSize(17)
Để làm chữ nghiêng ta dùng lệnh
la.font = UIFont.italicSystemFontOfSize(17)
Để căn chỉnh chữ vào giữa label, ta dùng lệnh
la.textAlignment = NSTextAlignment.Center
Để label có độ cao tự động đủ để hiển thị chữ nhiều dòng, ta dùng
la.sizeToFit()
Để tạo viền, đổ màu cho viền, ta dùng lệnh
la.layer.borderColor = hex("#6699cc").CGColor
la.layer.borderWidth = 1

Hàm hex để dùng mã hex code bạn xem ở đây.

No comments:

Post a Comment