I want to know how to change the colour of substring within a string. So for example, I have the following original black colour substring:
NSString *original=@"Frank Megan Timmy
Marcus Andrea Matt
Jamie Lauren Marcus";
Let us assume that the user has done something and I would like to make Marcus Andrea Matt a RED colour (for example) within the original string and keep everything else the same.
Can anyone tell me how this can do be done?