可能重复:
如何用零填充左侧的整数?
在我的 iPhone 应用程序中,我以这种方式计算时间。
int timeTakeInSeconds = (int)(self.timeTaken*[constants timer]);
int timeTakenMins= (int)(timeTakeInSeconds/60);
int timeTakenSecs =(int)(timeTakeInSeconds%60);
NSString *timeText = [NSString stringWithFormat:@"Time %d:%d",timeTakenMins,timeTakenSecs];
通过这个,我获得了 1,2,...10, 11..等等的第二名。但我需要 01、02、03...10、11、12..等等..我该怎么做?有没有办法通过数字格式化程序来做到这一点?请帮忙。