只需要在- (void)textFieldDidBeginEditing:(UITextField *)textField,- (void)textFieldDidEndEditing:(UITextField *)textField这两个方法里面调用-(void)moveView:(UITextField *)textField leaveView:(BOOL)leave这个方法就可以了
- (void)textFieldDidBeginEditing:(UITextField *)textField
{
[self moveView:textField leaveView:NO];
}
- (void)textFieldDidEndEditing:(UITextField *)textField
{
[self moveView:textField leaveView:YES];
}
-(void)moveView:(UITextField *)textField leaveView:(BOOL)leave
{
UIView *accessoryView = textField.inputAccessoryView;
UIView *inpuview = textField.inputView;
int textFieldY = 0;
int accessoryY = 0;
if (accessoryView&&inpuview) {
CGRect accessotyRect = accessoryView.frame;
CGRect inputViewRect = inpuview.frame;
accessoryY = 480 - accessotyRect.size.height+inputViewRect.size.height;
}
else if (accessoryView)
{
CGRect accessotyRect = accessoryView.frame;
accessoryY = 480 - (accessotyRect.size.height+216);
}
else if (inpuview)
{
CGRect inputViewRect = inpuview.frame;
accessoryY = 480 - inputViewRect.size.height;
}
else
{
accessoryY = 264;//480-216
}
CGRect textFieldRect = textField.frame;
textFieldY = textFieldRect.origin.y + textFieldRect.size.height + 20;
int offsetY = textFieldY - accessoryY;
if (!leave&&offsetY>0) {
int y_offset = -5;
y_offset += -offsetY;
CGRect viewFrame = self.view.frame;
viewFrame.origin.y += y_offset;
[UIView beginAnimations:nil context:nil];
[UIView setAnimationBeginsFromCurrentState:YES];
[UIView setAnimationDuration:0.3];
[self.view setFrame:viewFrame];
[UIView commitAnimations];
}
else
{
CGRect viewFrame = CGRectMake(0, 20, 320, 460);
[UIView beginAnimations:nil context:NULL];
[UIView setAnimationBeginsFromCurrentState:YES];
[UIView setAnimationDuration:0.3];
[self.view setFrame:viewFrame];
[UIView commitAnimations];
}
}