我正在尝试将已发送/未发送状态消息添加到所有传出的聊天气泡中。为此,我从 heightForCellBottomLabelAtIndexPath 方法返回 40。
同样从属性TextForCellBottomLabelAtIndexPath 方法我返回一个属性字符串。例如,
NSMutableAttributedString *hogan = [[NSMutableAttributedString alloc] initWithString:@"Presenting the great... Hulk Hogan!"];
[hogan addAttribute:NSFontAttributeName value:[UIFont
systemFontOfSize:20.0] range:NSMakeRange(24, 8)];[hogan addAttribute:NSForegroundColorAttributeName value:[UIColor blackColor] range:NSMakeRange(10, 10)];
现在,在我的单元格之间的空间增加到 40 之后,但我看不到任何作为属性字符串返回的文本。此外,如果我继续从 40 增加值,则单元格之间的空间会继续增加,但单元格标签文本不可见。
请告诉我我在哪里做错了。