0

我很抱歉,但这是基本问题。虽然我阅读了参考资料,但我没有得到以下问题。

我想更改气泡旁边的名称和时间的颜色,如何更改?在图片中,我想更改“Mike”和“12:28”的颜色,我认为类中有属性。

在此处输入图像描述

此致,

4

2 回答 2

0

尝试这个:

cell.textView.textColor = [UIColor blackColor];

要更改气泡内的文本颜色:

cell.bubbleView.textView.textColor = [UIColor whiteColor];
于 2015-10-24T12:56:45.707 回答
0

在集合视图的 cellForItemAtIndexPath 中试试这个

时间

cell.cellBottomLabel.textColor=[UIColor colorWithRed:246.0 / 255.0 green:187.0 / 255.0 blue: 45.0 / 255.0 alpha:1.0];

于 2015-10-31T06:06:31.853 回答