美文网首页
监听键盘通知

监听键盘通知

作者: 地选之猿 | 来源:发表于2016-06-02 10:13 被阅读40次

    [[NSNotificationCenterdefaultCenter]addObserver:self

    selector:@selector(keyboardWillShow:)

    name:UIKeyboardWillShowNotification

    object:nil];

    [[NSNotificationCenterdefaultCenter]addObserver:self

    selector:@selector(keyboardShow:)

    name:UIKeyboardDidShowNotification

    object:nil];

    [[NSNotificationCenterdefaultCenter]addObserver:self

    selector:@selector(keyboardWillHide:)

    name:UIKeyboardWillHideNotification

    object:nil];

    [[NSNotificationCenterdefaultCenter]addObserver:self

    selector:@selector(keyboardHide:)

    name:UIKeyboardDidHideNotification

    object:nil];

    相关文章

      网友评论

          本文标题:监听键盘通知

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