我很抱歉,但这是基本问题。虽然我阅读了参考资料,但我没有得到以下问题。
我想更改气泡旁边的名称和时间的颜色,如何更改?在图片中,我想更改“Mike”和“12:28”的颜色,我认为类中有属性。
此致,
尝试这个:
cell.textView.textColor = [UIColor blackColor];
要更改气泡内的文本颜色:
cell.bubbleView.textView.textColor = [UIColor whiteColor];
在集合视图的 cellForItemAtIndexPath 中试试这个
时间
cell.cellBottomLabel.textColor=[UIColor colorWithRed:246.0 / 255.0 green:187.0 / 255.0 blue: 45.0 / 255.0 alpha:1.0];