简而言之:如何在 UILabel(比如 4 行)的子部分(比如 2 行)上应用 lineBreakMode。
长篇:
单击此处查看 iOS7 中 App Store 的屏幕截图。
我有一个 4 行的 UILabel(红色)。我假设这是屏幕截图上的 UILabel,因为它们在每个 UITableViewCells 中都垂直居中。
此 UILabel 由一个子字符串组成,该子字符串最多截断 2 行(蓝色)。
在这个问题上花了一整天,我什至没有找到解决方案的开始。如果有人可以帮助...
这是另一个例子。这是一个UILabel:
+------------------------------------------+
| |
|Lorem ipsum dolor sit amet, consectetuer |
|adipiscing elit, sed diam nonummy nibh |
|euismod tincidunt ut laoreet dolore magna |
|aliquam erat volutpat. |
|Line 2 |
|Line 3 |
| |
+------------------------------------------|
我希望它以这种形式显示(第一句被截断为两行):
+------------------------------------------+
| |
| |
|Lorem ipsum dolor sit amet, consectetuer |
|adipiscing elit, sed diam nonummy nibh... |
|Line 2 |
|Line 3 |
| |
| |
+------------------------------------------|