Is there any way to have a label wordwrap text as needed? I have the line breaks set to word wrap and the label is tall enough for two lines, but it appears that it will on
In Swift you would do it like this:
label.lineBreakMode = NSLineBreakMode.ByWordWrapping label.numberOfLines = 0
(Note that the way the lineBreakMode constant works is different to in ObjC)