Sorry, I am not familiar with NSNumberFormatter, but I would do this:
NSString *finalNumber = [NSString stringWithFormat:@"%.1f%%", [nsnumber floatValue]*100];
EDIT
The correct answer is given below, but since this is already accepted as the correct answer, I again provided the code:
[numberFormatter setNumberStyle:NSNumberFormatterPercentStyle]; [numberFormatter setMinimumFractionDigits:1];
source share