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

监听键盘 防止输入时覆盖掉textfiled

时间:2015-12-18 16:15:58      阅读:137      评论:0      收藏:0      [点我收藏+]

标签:

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

 

- (void)keyboardwasChange:(NSNotification *)info

{

    CGRect keyFrame = [info.userInfo[UIKeyboardFrameEndUserInfoKey] CGRectValue];

    CGFloat tY = keyFrame.origin.y - self.view.frame.size.height - 64;

    

    self.view.transform = CGAffineTransformMakeTranslation(0, tY);

}

监听键盘 防止输入时覆盖掉textfiled

标签:

原文地址:http://www.cnblogs.com/paocai2015/p/5057039.html

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