Space is not showing on label After adding a space to a string. I am using the following method to get it. I want to add space after string and that should be displayed on label.
NSString *text = @"ABCD";
text = [text stringByAppendingString:@" "];
But when i run it is showing as "ABCD" only.
I am displaying label on tableviewcell and i am setting text alignment to right