UILabel sizeToFit method not working properly
Turns out the code is just fine - but the Use Autolayout was checked. Unchecked it - everything works just great...
If you want to achieve this with auto layout turned on it's simple. Just make sure you add numberOfLines
textLabel.adjustsFontSizeToFitWidth = YES;
textLabel.numberOfLines = 0;