I have some code to format a file size string:
NSNumberFormatter *numberFormatter = [[NSNumberFormatter alloc] init];
[numberFormatter setPositiveFormat: @"#,##0.## bytes"];
Is the @"#,##0.## bytes"
the same kind of format string as I'd use in stringWithFormat? What do the hash/pound symbols mean here?
Thanks!