0

需要格式化四位数字,没有小数,包括左边的 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];  
}
4

1 回答 1

1

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

 self.yourTimeHere.text = [NSString stringWithFormat:@"%d.%d", (int)hours, (int)minutes];
于 2015-05-05T10:29:48.070 回答