I'm basically trying to manipulate the string to have the Game Review portion either bold or a different color from the variable passed in as it's basically passing it all as the same size/color. Anyway to manipulate this in the same line or? What are my options? I was thinking of just having a static label Game Review and a separate label to pass this in that's set a different color/font but is there an alternative?
Here is the code I'm basically trying to manipulate:
NSString *gName = [NSString stringWithFormat:@"Game Review: %@",[aVideoGame name]];
itemView.gameName.text = gName;
Basically wanting Game Review bold, while the info passed in [aVideoGame name] isn't. Not sure what to do here, as I'm a n00b.