点击的UITextFiled被移出界面
在UICollectionViewController中加载单元格,单元格是XIB混合开发,有UITextFiled。 当你点击UITextFiled时,弹出键盘,整个View向上移动,点击的UITextFiled移出界面。 寻求帮助:无法关闭弹出式键盘的视图自动向上移动。 或者谁知道它有什么问题?
- (void)viewWillAppear:(BOOL)animated {
}我发现一个解决方案:实现这个方法,而不是调用[super viewWillAppear:animated]可以解决。
你必须记住当你使用TableViewController或者CollectionViewController时他们会自动获得这个行为。 您必须禁用自动滚动,或者您可以添加键盘通知观察者,然后将tableView重新滚动到原来的位置
禁用UITableView的自动滚动
链接地址: http://www.djcxy.com/p/74221.html上一篇: The clicked UITextFiled is moved out of the interface
下一篇: iPhone app crashes when CALayer is paused and view is rotated