0

I am sorry but it is basic question. Though I read reference, I didn't get below question.

I want to change the color of name and time next to bubble, how can I change them ? In the picture, I want to change the color of "Mike" and "12:28" I think there is property in the class.

enter image description here

Best Regards,

Yaemon
  • 81
  • 1
  • 12
  • How did you manage to put the name and time there? If you used a custom label, then just update their values. – oyalhi Sep 29 '16 at 14:10

2 Answers2

0

Try this:

cell.textView.textColor = [UIColor blackColor];

To change the text colour inside bubble:

cell.bubbleView.textView.textColor = [UIColor whiteColor];
Abhinav
  • 37,684
  • 43
  • 191
  • 309
0

Try this in cellForItemAtIndexPath of collection View

for time

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