डायनामिक टेक्स्ट जानकारी के लिए लाइनों की संख्या शून्य सेट करें, यह तब उपयोगी होगा जब आपका टेक्स्ट अलग-अलग हो।
प्रोग्रामिक रूप से (स्विफ्ट 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
Inetrface बिल्डर का उपयोग करना
नोट: यह आवश्यक नहीं है कि Minimum Font Scale
लेबल फ्रेम में टेक्स्ट को फिट करने के लिए न्यूनतम स्केल फैक्टर हो।