I am working on the app in which I have to show fraction number on label.
NSMutableAttributedString * hogan = [[NSMutableAttributedString alloc] initWithSt
You can achieve it by setting the UILabel's text property to the Unicode of 1/2:
UILabel's
myLblName.text = [NSString stringWithFormat:@"%C",0x00bd];
And also see below link NSString: Looking for Unicode for superscript: 1, 2, 3 Might be helpful for you. Enjoy ;)