For an Iphone app i want to show certain labels and buttons text as underlined.
In order to show bulleted text, I make use of below given code
Does there exists any similar thing for underlining the text in labels and buttons?
In order to show bulleted text, I make use of below given code
Code:
NSString *bulletSymbol = [NSString stringWithFormat:@"%C", 0x2219];
label.text = [bulletSymbol stringByAppendingString: @"Label"];