アプリで計算ボタンを押したときに、次のコードを実行しています。
float sqft = ([textfield1.text floatValue]);
float thick= ([textfield2.text floatValue]);
float cos = ([textfield3.text floatValue]);
float eff = ([textfield4.text floatValue]);
float num = ((thick*.5)*sqft)/eff;
float cost = (num*cos);
float costft = (cost/sqft);
label1.text = [NSString stringWithFormat:@"%2.f",num];
label2.text = [NSString stringWithFormat:@"%2.f",cost];
label3.text = [NSString stringWithFormat:@"%2.f",costft];
これを行うと、ラベルはゼロのみを返します。ラベルを手動で文字列に設定して、委任のものかどうかを確認しましたが、数式がゼロのみを返す理由がわかりません