在Autolayout下处理键盘,输入框

其实,这个的思路很简单,首先你得配置好所有的约束关系。

- (void)KeyboardManage:(NSNotification *)notification {
    // 获取键盘基本信息(动画时长与键盘高度)
    NSDictionary *userInfo = [notification userInfo];
    CGRect rect = [userInfo[UIKeyboardFrameBeginUserInfoKey] CGRectValue];
    CGFloat keyboardHeight = CGRectGetHeight(rect);
    CGFloat keyboardDuration = [userInfo[UIKeyboardAnimationDurationUserInfoKey] doubleValue];

    // 修改下边距约束
    A.constant = keyboardHeight;

    // 更新约束
    [UIView animateWithDuration:keyboardDuration animations:^{

        [self.view layoutIfNeeded];
    }];
}

你可能感兴趣的:(autolayout)