我TTStyledTextLabel
在我的项目中使用 a 来解析超链接,一切正常。我面临的唯一问题是截断长文本 - 如果文本不适合TTStyledTextLabel
.
换句话说,我需要与 UILabel 相同的行为,它添加省略号以指示某些文本已被剪切。我已经在TTStyledTextLabel
和TTStyledText
课程中搜索过,没有任何规定可以实现这一点。以下是我在UITableViewCell
子类中用于适当设置框架的代码TTStyledTextLabel
:
-(void) layoutSubviews
{
[super layoutSubviews];
.
.
.
CGSize maxSize = CGSizeMake(self.contentView.frame.size.width -TEXT_OFFSET_WIDTH, TT_TEXT_MAX_HEIGHT);
[[[self textLabelTTStyled] text] setWidth:maxSize.width];
[[self textLabelTTStyled] sizeToFit];
double heigthForTTLabel = [[[self textLabelTTStyled] text] height];
if (heigthForTTLabel > maxSize.height)
heigthForTTLabel = maxSize.height; // Do not exceed the maximum height for the TTStyledTextLabel.
**// The Text was supposed to clip here when maximum height is set!**
CGSize mTempSize = CGSizeMake([[[self textLabelTTStyled] text] width], heigthForTTLabel);
CGRect frame = CGRectMake(TEXT_OFFSET_X,TEXT_OFFSET_Y,mTempSize.width, mTempSize.height);
self.textLabelTTStyled.frame = frame;
.
.
.
}
在tableView:cellForRowAtIndexPath:
我将这样的文本设置为我的TTStyledTextLabel
:
TTStyledText *styledStatusMessage = [TTStyledText textFromXHTML:@"This is a really long text, how long can this go on? This is a really long text, how long can this go on? This is a really long text, how long can this go on? This is a really long text, how long can this go on? This is a really long text, how long can this go on? This is a really long text, how long can this go on?"
lineBreaks:YES URLs:YES];
if (nil == styledStatusMessage) {
styledStatusMessage = [TTStyledText textWithURLs:[statusMessage title] lineBreaks:YES];
[[cell textLabelTTStyled] setText:styledStatusMessage];
}
多余的文本只是被丢弃,默认情况下不添加省略号以指示文本被剪切。这个问题有什么解决办法吗?
谢谢,拉吉