I am bringing in some data from a JSON file and I want to change the font to courier but when I try to do the following I get this error: "Property 'font' not found on object NSString". Is there any way around this?
NSString *timePeriod = [diction objectForKey:@"Time Period"];
UIFont *changeFont = [UIFont fontWithName:@"Courier" size:12];
timePeriod.font = changeFont;