I am trying to add Sent/Unsent status message to all outgoing chat bubbles. For this, I am retuurning 40 from heightForCellBottomLabelAtIndexPath method.
Also from attributedTextForCellBottomLabelAtIndexPath method I am returning a attributed string. For example,
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)];
Now after this space between my cells have increased to 40 but I can't see any text that I am returning as attributed string. Also if I keep increasing the value from 40, space between the cells keep on increasing but cell label text not visible.
Please tell me where I am doing wrong.