how to remove three dots from UILabel?
Please add code
[labelname sizeToFit];
Programmatically,
nameLabel.lineBreakMode = .byClipping
Set the label's lineBreakMode
to .ByClipping
(Swift) or NSLineBreakByClipping
(Objective-C).
Please add code
[labelname sizeToFit];
Programmatically,
nameLabel.lineBreakMode = .byClipping
Set the label's lineBreakMode
to .ByClipping
(Swift) or NSLineBreakByClipping
(Objective-C).