问题描述
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
}
但是它不能正常工作
请给我一些建议,我该怎么做。谢谢
解决方法
暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!
如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。
小编邮箱:dio#foxmail.com (将#修改为@)