zoukankan      html  css  js  c++  java
  • ios 键盘弹起

    #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];
    }

  • 相关阅读:
    (二)shell中的变量
    (一)shell脚本入门
    java的动态代理机制详解
    docker学习
    一、Spring Boot 入门
    如何高效的利用博客园?
    CMake入门指南
    TortoiseSVN安装使用
    TortoiseSVN配置和使用教程
    脑电采集 地电极和参考电极的作用和区别
  • 原文地址:https://www.cnblogs.com/A--G/p/4832803.html
Copyright © 2011-2022 走看看