000.0としたかったら以下。
NSString* string = [NSString stringWithFormat:@"%05.1f", 0.0];
NSLog(@"string is %@", string);//=> string is 000.0
最初の05
のところで全体の長さを決めているらしいです。
この場合は.
も含めて5文字で治まるようにformatされました。
Go to list of users who liked
More than 5 years have passed since last update.
000.0としたかったら以下。
NSString* string = [NSString stringWithFormat:@"%05.1f", 0.0];
NSLog(@"string is %@", string);//=> string is 000.0
最初の05
のところで全体の長さを決めているらしいです。
この場合は.
も含めて5文字で治まるようにformatされました。
Register as a new user and use Qiita more conveniently
Go to list of users who liked