美文网首页
评论框 键盘升起 2021-08-15

评论框 键盘升起 2021-08-15

作者: ZM_微笑向阳 | 来源:发表于2021-08-15 11:20 被阅读0次

    1、键通知

        [[NSNotificationCenter defaultCenter] addObserver:self selector: @selector(keyboardWillChange:) name: UIKeyboardWillChangeFrameNotification object: nil];
    

    2、键盘将要出现

    -(void)keyboardWillChange:(NSNotification *)note {
    
          //获取键盘的高度
          CGFloat keyboardY = [[note.userInfo objectForKey:UIKeyboardFrameEndUserInfoKey] CGRectValue].origin.y;
          CGFloat ty = keyboardY - KH;
    
    
          [UIView animateWithDuration:0.3 animations:^{
                 self.bottomView.transform = CGAffineTransformMakeTranslation(0,ty);
          }];
    }

    相关文章

      网友评论

          本文标题:评论框 键盘升起 2021-08-15

          本文链接:https://www.haomeiwen.com/subject/wkcubltx.html