码迷,mamicode.com
首页 > 其他好文 > 详细

监听键盘

时间:2015-12-22 23:03:17      阅读:245      评论:0      收藏:0      [点我收藏+]

标签:

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


#pragma mark 监听方法
- (void)keyboardChangeFrame :(NSNotification *)note
{
    CGFloat time = [note.userInfo[UIKeyboardAnimationDurationUserInfoKey] doubleValue];
    CGRect rect = [note.userInfo[UIKeyboardFrameEndUserInfoKey] CGRectValue];
    CGFloat endY = rect.origin.y;
    [UIView animateWithDuration:time animations:^{
        self.view.transform = CGAffineTransformMakeTranslation(0, endY - [UIScreen mainScreen].bounds.size.height);
    }];
}

 

监听键盘

标签:

原文地址:http://www.cnblogs.com/nielsen/p/5068116.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!