SDK7格式编号

时间:2013-10-16 06:59:20

标签: ios objective-c

需要格式化四位数,没有小数,包括左边的0,例如0012.我在Xcode for iPhone上编写这段代码。

if (Tipo.selectedSegmentIndex == 2 ) { 
   float a = [N1.text floatValue];  float b = [N2.text floatValue];  
   float c = a*b;  
   R.text = [[NSString alloc] initWithFormat:@"%.0f",c];  
}

1 个答案:

答案 0 :(得分:1)

尝试这样的事情,让我知道是否有帮助

 self.yourTimeHere.text = [NSString stringWithFormat:@"%d.%d", (int)hours, (int)minutes];