これはコードです:
NSString *labelString = @"Username: \n some text";
NSMutableAttributedString *labelAttributedString = [[NSMutableAttributedString alloc]initWithString:labelString];
...
self.smartLabel.attributedText = labelAttributedString;
ラベルは次のとおりです。
Username: some text
それ以外の:
Username:
some text
編集:ラベルにはテキストを1行に入れるのに十分なスペースがありますが、ブレークラインを挿入したい(プログラムで!)