float値をに取得する正しい方法を見つけようとしていますUIAlertView
。私float
の値は、どこかの文字列に渡されるのではなく、別の値をチェックするためにのみ使用されます。
float
値をラベルに設定して設定し、アラートに渡すことができると思いhidden
ますが、これが適切な方法ではないことを確認してください。アドバイスをいただければ幸いです。
float x = ([_continuityRingFinalR1.text floatValue]); /stringWithFormat:@"%.1f", x * y]]
float y = (1.67);
if ([_continuityRingFinalRn.text floatValue] > x * y ) {
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Advisory Warning"
message:[NSString stringWithFormat: @"Based on your value of %@ this value may not be acceptable. %@ would be acceptable",_continuityRingFinalR1.text, ]///<<< my float value here
delegate:self cancelButtonTitle: @"Ignore" otherButtonTitles: @"Retest", nil];
[alert show];
}