iPhone将字符串分成多行并显示为Label

时间:2011-10-20 13:10:24

标签: iphone ios nsstring uilabel

我的字符串如下:

#define BEEF_LABLE @"Recommended Internal Temp 145 - Medium Rare 160 - Medium 170 - Well done"

我想以4行标签显示它。 “推荐的内部温度”在一行中,“145 - 中等稀有”在第二行,“160 - 中等”在第3行,“170 - 做得好”在第4行。

如何相应地拆分文本。

1 个答案:

答案 0 :(得分:4)

yourLabel.lineBreakMode = UILineBreakModeWordWrap;
yourLabel.numberOfLines = 0;  

并相应地在字符串中添加(“\ n”)...像这样

#define BEEF_LABLE @"Recommended Internal Temp \n 145 - Medium Rare 160 \n- Medium \n 170 - Well done"