首页 > 移动平台 > 详细

ios 键盘弹起

时间:2015-09-23 18:43:00      阅读:264      评论:0      收藏:0      [点我收藏+]

#pragma mark 键盘弹起操作

- (void)keyboardWillShow:(NSNotification *)notification
{
    NSDictionary *info = notification.userInfo;
    kbSize = [[info objectForKey:UIKeyboardFrameEndUserInfoKey] CGRectValue].size;
    [UIView beginAnimations:@"kbmove" context:nil];
    [UIView setAnimationDelay:0.5];
    if (!iPhone5) {
        
        self.view.frame = CGRectMake(0, 0 - kbSize.height + 150, SCREEN_WIDTH, SCREEN_HEIGHT);
        
    }else
    {
        self.view.frame = CGRectMake(0, 0 - kbSize.height + 120, SCREEN_WIDTH, SCREEN_HEIGHT);
    }
    [UIView commitAnimations];
}

#pragma mark 键盘消失操作

- (void)keyboardwillhidden:(NSNotification *)notification
{
    self.view.frame = CGRectMake(0, 0, SCREEN_WIDTH, SCREEN_HEIGHT);
}

- (void)createKeyboardNotification
{
    //键盘通知
    [[NSNotificationCenter defaultCenter] addObserver:self
                                             selector:@selector(keyboardWillShow:)
                                                 name:UIKeyboardWillShowNotification object:nil];
    
    [[NSNotificationCenter defaultCenter] addObserver:self
                                             selector:@selector(keyboardwillhidden:)
                                                 name:UIKeyboardWillHideNotification object:nil];
}

ios 键盘弹起

原文:http://www.cnblogs.com/A--G/p/4832803.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!