我创建了Ionic-Cordova应用程序(iOS App)。
首先,我取下了键盘附件栏。
配件栏一直很顺利。 (下图)
...但是当我向下滚动到底部时,它会显示一个空白区域(键盘的白色空间顶部)
有人能弄清楚如何解决这个问题吗?
我不确定天气是Cordova / iOS或Ionic / css问题,我试图解决所有问题,但没有任何作用。
答案 0 :(得分:0)
试试这个:
-(void)textFieldDidBeginEditing:(UITextField *)textField {
//Give your specifications here while editing
scrollview.frame = CGRectMake(0,0,320,285);
//If you are using tableview,give the constraints for tableview
}
-(void)textFieldDidEndEditing:(UITextField *)textField {
//Give your specifications here after editing completed
scrollview.frame = CGRectMake(0,0,320,586);
}