Is there anyway to set the height of a UILabel programmatically? I\'ve added a bunch of constraints to my .Xib files so every other label is dependent upon the one above or belo
try this:
var frame: CGRect = nameLabel.frame frame.size.height = height nameLabel.frame = frame