6つのテキストフィールドがあり、最初の3つのテキストフィールドを上に移動したくないのですが、残りは必要です.1つのテキストフィールドをクリックしても移動しませんが、2、3などのテキストフィールドをクリックするとビューが表示されます下に移動します。
私が使用したコード:-
- (void) animateTextField: (UITextField*) textField up: (BOOL) up
{
const int movementDistance = 105;
const float movementDuration = 0.3f;
int movement = (up ? -movementDistance : movementDistance);
[UIView beginAnimations: @"anim" context: nil];
[UIView setAnimationBeginsFromCurrentState: YES];
[UIView setAnimationDuration: movementDuration];
self.view.frame = CGRectOffset(self.view.frame, 0, movement);
[UIView commitAnimations];
}
- (void)textFieldDidBeginEditing:(UITextField *)textField
{
if (textField==txtname) {
toolphone.hidden = YES;
}
if (textField==txtcompanyname) {
toolphone.hidden = YES;
}
if (textField==txtemail) {
toolphone.hidden = YES;
}
if (textField ==txtsubject) {
toolphone.hidden = YES;
}
if (textField ==txtphone) {
[txtphone resignFirstResponder];
toolphone.hidden = NO;
}
if (textField ==txtmessage) {
toolphone.hidden = YES;
[self animateTextField: textField up: YES];
}
}