[[NSNotificationCenter defaultCenter]addObserver:self selector:@selector(KeyBoardWillChange:) name:UIKeyboardWillChangeFrameNotification object:nil];
//监听通知的方法
-(void)KeyBoardWillChange:(NSNotification *)notification{
CGFloat height = [[[notification userInfo] objectForKey:UIKeyboardFrameEndUserInfoKey]CGRectValue].origin.y;
[UIView animateWithDuration:[[[notification userInfo] objectForKey:UIKeyboardAnimationDurationUserInfoKey] floatValue] animations:^{
//自定义输入框 _inputView
_inputView.frame=CGRectMake(0, height-49, SCREEN_WIDTH, 49);
}];
}
时间: 2024-10-12 16:47:57