Is there a way I can assign UIColor to NSString like in
cell.textLabel.text = [UIColor grayColor];
I am trying to add color for following string like :
NSString *text = @"Hello"
[text setColor:[UIColor grayColor]; // It gives error here saying it cannot assign
Is there any other way I can assign color to NSString ?