如何在UILabel中的不同行中显示两个NSAttributedStrings

时间:2015-11-12 22:29:04

标签: objective-c uilabel nsattributedstring

我需要在UILabel中显示两行属性字符串,例如,第一行为theTopMessage,第二行为theBottomMessage。它们都是NSAttributedStrings。

我使用了以下代码,但是我没有得到我想要的东西。 theTopMessagetheBottomMessage位于同一行。谁能帮我?非常感谢。

_eventInfoLbl.lineBreakMode = NSLineBreakByWordWrapping;
_eventInfoLbl.numberOfLines = 0;
_eventInfoLbl.attributedText = info(nsattributed string which holds theTopMessage and theBottomMessage);
[_eventInfoLbl sizeToFit];

0 个答案:

没有答案