Đặt số dòng bằng 0 cho thông tin văn bản động, nó sẽ hữu ích khi văn bản của bạn thay đổi.
Lập trình (Swift 3)
var label = UILabel()
let stringValue = "iOS\nmultiline\nlabel\nin\nInterface\nbuilder"
label.text = stringValue
label.numberOfLines = 0 // Set 0, if number of lines not specified.
label.lineBreakMode = .byTruncatingTail // or .byWrappingWord
label.minimumScaleFactor = 0.8 . // It is not required but nice to have a minimum scale factor to fit text into label frame
Sử dụng Trình tạo Inetrface
Lưu ý: Không bắt buộc phải đặt Minimum Font Scale
, nhưng thật tuyệt khi có hệ số tỷ lệ tối thiểu để khớp văn bản vào khung nhãn.