I am dynamically setting text of the UITableView title Label from an array. Array consists of number of strings. I want text character in superstring format. So how can I do that in ios.
Array is :
quality=[[NSMutableArray alloc]initWithObjects:@"1080pHD",@"720pHD",@"480p",@"360p",@"240p",@"144p", nil];
I want HD in superscript.
Thank You,