我希望将我拥有的两个值相加,然后将它们显示为新的 UILabel。
我已经在网上阅读了有关使用浮点数的信息,但是我遇到了困难,下面是我的代码..
我要做的总和是:shippingLabel(运费)+ costLabel(产品价格)然后在新的 UILabel 中访问它以显示(TotalPrice)
我遇到的问题是该值返回为 00.00
//TotalPrice
// Grab the values from the UITextFields.
float ShippingValue = [[shippingLabel text] floatValue];
float CostValue = [[costLabel text] floatValue];
// Sum them.
float floatNum = ShippingValue + CostValue;
TotalPrice.text = [[NSString alloc] initWithFormat:@"%f", floatNum];
TotalPrice = [[UILabel alloc] initWithFrame:CGRectMake(60.0f, 200.0f, 300.0f, 25.0f)];
TotalPrice.textColor = [UIColor colorWithHexString:@"5b5b5b"];
TotalPrice.backgroundColor = [UIColor clearColor];
TotalPrice.font = [UIFont boldSystemFontOfSize:12.0f];
TotalPrice.textAlignment = UITextAlignmentLeft;
[self.view addSubview:TotalPrice];