if
UITextfield でのユーザー入力の値が入力値の 1.67 倍を超えるアラートを送信しようとしています。
- (void)textFieldDidEndEditing:(UITextField *)textField
float x = ([_continuityRingFinalR2.text floatValue]);
float y = (1.67);
if ([_continuityRingFinalR2.text > x * y] )//errors here {
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Warning" message:@"My message here" delegate:nil cancelButtonTitle: @"Ok" otherButtonTitles: nil];
[alert show];
}
_continuityRingCircuitR2.text がユーザー入力の 1.67 倍である場合、アラートが表示されます。ほぼそこにいると思いますが、エラーが発生し続けます([_continuityRingFinalR2.text x * y] )