Xcode: Is there a way to change line spacing (UI Label) in interface builder?

cocoa-touch, interface-builder, uilabel, xcode

Solution

Since iOS 6, Apple added `NSAttributedString` to `UIKit`, making it possible to use `NSParagraphStyle` to change the line spacing.

To actually change it from NIB, please see souvickcse's answer.

Problem

I've got several UILabels with multiple lines of text, but the line spacing is larger than I would prefer. Is there any way to change this?

Original source