-3

好的,我一直在尝试使浮点值起作用。我有两个字段名称RingNumberNumberOfSides

我正在尝试将它们加在一起。

这是我的代码。这里可能出了什么问题?根据教程,这一切都是正确的。

float x = ([RingNumber.text floatValue]);
float y = x+([NumberOfSides.text floatValue]);

Answer.text = [[NSString alloc] initWithFormat:@"%2.f", y];
4

1 回答 1

0

这行得通吗?

Answer.text = [NSString stringWithFormat:@"%f", y];
于 2012-08-06T21:04:59.947 回答