0

我使用文本字段供用户输入数据,并使用标签在计算后显示数据。当我将两个文本字段一起计时时,它可以完美运行。但是,当我引入更多标签时(我需要两个文本字段涉及不同的公式以生成 13 个不同的标签),它会干扰最初的两个并且数学不起作用。

这段代码有效:

float floatHeightResult=[rectWidth.text floatValue] *
[rectLength.text floatValue];

NSString *stringHeightResult=[[NSString alloc]
                            initWithFormat:@"%1.2f",floatHeightResult];

heightResult.text=stringHeightResult;  

但是,一旦我介绍了以下其他添加内容,它就不起作用了:

float floatWeightResult=[rectWidth.text floatValue] +
[rectWidth.text floatValue] * 2.87 ;

NSString *stringWeightResult=[[NSString alloc]
                             initWithFormat:@"%1.2f",floatWeightResult];

widthResult.text=stringWeightResult;

如何将两个数字相加,然后将结果乘以另一个数字?

4

1 回答 1

0

//我认为这对你有帮助..

float fl_rectWidth = [rectWidth.text floatValue];
float fl_rectLength = [rectLength.text floatValue];

float floatHeightResult = fl_rectWidth * fl_rectLength;

lbl_heightResult.text=[NSString stringWithFormat:@"%1.2f",floatHeightResult];

float floatWeightResult = fl_rectWidth + floatHeightResult ;

lbl_widthResult.text=[NSString stringWithFormat:@"%1.2f",floatWeightResult];
于 2013-06-21T11:23:18.313 回答