0

我在设置一些花车和阅读它们时遇到了一些困难。这是应用程序的链接(是的,有些部分是不完整的,我还没有完成)。

如果你下载它,你会看到 setter 没有按应有的方式工作,除非我做得不对。

这是代码:

CalcViewController *CVC = [segue destinationViewController];
    float tempGasPrice;
    GasPrices *tempPrices;

    tempGasPrice = [[unleadedField text] floatValue];
    [tempPrices setUnleaded:tempGasPrice];
    NSLog(@"%F", tempPrices.unleaded);

    tempGasPrice = [[premiumField text] floatValue];
    [tempPrices setPremium:tempGasPrice];
    NSLog(@"%F", tempPrices.premium);

    tempGasPrice = [[superGasField text] floatValue];
    [tempPrices setSuperGas:tempGasPrice];
    NSLog(@"%F", tempPrices.superGas);

这是我需要帮助的部分,如果我在 unleadedField、premiumField 或 superGasField 的文本字段中输入 1,我希望 NSLog 输出 1,但它输出 0。

4

1 回答 1

-4

浮动 tempGasPrice;

tempGasPrice = [[self.txtField text] floatValue];


NSLog(@"%F", tempGasPrice);

尝试这个..

于 2013-09-20T05:10:17.990 回答