我需要在UILabel中显示两行属性字符串,例如,第一行为theTopMessage
,第二行为theBottomMessage
。它们都是NSAttributedStrings。
我使用了以下代码,但是我没有得到我想要的东西。 theTopMessage
和theBottomMessage
位于同一行。谁能帮我?非常感谢。
_eventInfoLbl.lineBreakMode = NSLineBreakByWordWrapping;
_eventInfoLbl.numberOfLines = 0;
_eventInfoLbl.attributedText = info(nsattributed string which holds theTopMessage and theBottomMessage);
[_eventInfoLbl sizeToFit];