This is the code:
NSString *labelString = @"Username: \n some text";
NSMutableAttributedString *labelAttributedString = [[NSMutableAttributedString alloc]initWithString:labelString];
...
self.smartLabel.attributedText = labelAttributedString;
The label is:
Username: some text
Instead of:
Username:
some text
Edit: The label has enough space to put the text in 1 line, still I want to insert the breakline (programatically!)