在Cordova / Ionic / iOS中滚动时的空白空间

时间:2014-05-22 04:04:58

标签: ios css objective-c cordova ionic-framework

我创建了Ionic-Cordova应用程序(iOS App)。

首先,我取下了键盘附件栏。

配件栏一直很顺利。 (下图)

enter image description here

...但是当我向下滚动到底部时,它会显示一个空白区域(键盘的白色空间顶部)

enter image description here

有人能弄清楚如何解决这个问题吗?

我不确定天气是Cordova / iOS或Ionic / css问题,我试图解决所有问题,但没有任何作用。

1 个答案:

答案 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);
}