How can I modify the gap between lines (line spacing) in a multiline UILabel?
UILabel
Best thing I found is: https://github.com/mattt/TTTAttributedLabel
It's a UILabel subclass so you can just drop it in, and then to change the line height:
myLabel.lineHeightMultiple = 0.85; myLabel.leading = 2;