我正在做一个需要并排排列的项目3 UILabels
。让我用一个例子来解释它。
例如,我有以下句子。"Tim Moore commented on the little bear story"
现在我的三个UILabels
将包含:
LABEL 1 --> Tim Moore
LABEL 2 --> commented on
LABEL 3 --> the little bear story
另一个例子:
Dave Smits likes the status "We and only we can me a knew future and only we nobody else can make changes, so don't stop now !"
LABEL 1 --> Dave Smits
LABEL 2 --> likes the status
LABEL 3 --> "We and only we can me a knew future and only we nobody else can make changes, so don't stop now !"
就像你在第二个例子中看到的那样,句子要长得多。
我现在的问题是如何将这三条UILabels
线排成一行,这样我才能得到一个很好的句子。我将它分成三个的原因UILabels
是因为我需要UITapgestures
在每个UILabel
.
我正在UITableviewCell
使用autolayout
.
任何帮助,将不胜感激 !