微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

键盘上方观看的最佳解决方案

如何解决键盘上方观看的最佳解决方案

我是IOS的新手,我有些困惑。我有这样的等级制度

enter image description here

tableView-包含我的项目列表 PlayerMessagePanel-这是用于发送消息的面板。但是,当我单击“ PlayerMessagePanel”中的UITextField时,键盘将完全覆盖所有内容

我试图这样做:

[[NSNotificationCenter defaultCenter] addobserver:self
                                             selector:@selector(keyboardDidShow:)
                                                 name:UIKeyboardDidShowNotification
                                               object:nil];

    [[NSNotificationCenter defaultCenter] addobserver:self
                                             selector:@selector(keyboardDidHide:)
                                                 name:UIKeyboardDidHideNotification
                                               object:nil];

然后听众增加边距

- (void)keyboardDidShow: (NSNotification *) notif{
    //Keyboard becomes visible
    self.view.frame = CGRectMake(self.view.frame.origin.x,self.view.frame.origin.y - 220,self.view.frame.size.width,self.view.frame.size.height);   //move up
}

- (void)keyboardDidHide: (NSNotification *) notif{
    //keyboard will hide
    self.view.frame = CGRectMake(self.view.frame.origin.x,self.view.frame.origin.y + 220,self.view.frame.size.height);   //move down
}

但是它不能正常工作

enter image description here

请给我一些建议,我该怎么做。谢谢

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。