Text not vertically centered in UILabel
问题 I've created a Label with the following code : func setupValueLabel() { valueLabel.numberOfLines = 1 valueLabel.font = UIFont(name: "Avenir-Black", size: 50) valueLabel.adjustsFontSizeToFitWidth = true valueLabel.clipsToBounds = true valueLabel.backgroundColor = UIColor.greenColor() valueLabel.textColor = valuesColor valueLabel.textAlignment = NSTextAlignment.Center } I don't really understand why but the label is not vertically centered : Do I have to do anything specific so it can be