ios – 键盘在UICollectionViewController中打破布局

ios – 键盘在UICollectionViewController中打破布局,第1张

概述我有一个水平的UICollectionViewController,其中每个单元格在单元格的底部包含一个UITextView.当我在UITextView内部点击时,键盘出现时,CollectionView的高度减少了260点(我注意到键盘的高度),然后增加130点,所以最终高度比预期的低130点. 你知道为什么框架会以这种方式改变吗? 我已经在下面列出了最相关的部分,或者你可以在这里找到测试项目: 我有一个水平的UICollectionVIEwController,其中每个单元格在单元格的底部包含一个UITextVIEw.当我在UITextVIEw内部点击时,键盘出现时,CollectionVIEw的高度减少了260点(我注意到键盘的高度),然后增加130点,所以最终高度比预期的低130点.

你知道为什么框架会以这种方式改变吗?

我已经在下面列出了最相关的部分,或者你可以在这里找到测试项目:https://github.com/johntiror/testAutomaticPush/tree/master

UIVIEwController(只需启动CollectionVIEwController):

class VIEwController: UIVIEwController {  overrIDe func vIEwDIDAppear(_ animated: Bool) {    super.vIEwDIDAppear(animated)    let layout = UICollectionVIEwFlowLayout()    layout.itemSize = vIEw.bounds.size    layout.scrollDirection = .horizontal    layout.minimumlinespacing = 0    let fsPicVC = CollectionVIEwController(collectionVIEwLayout: layout)    self.present(fsPicVC,animated: true) { }  }}

CollectionVIEwController:

class CollectionVIEwController: UICollectionVIEwController {  overrIDe func vIEwDIDLoad() {    super.vIEwDIDLoad()    self.collectionVIEw!.register(CollectionVIEwCell.self,forCellWithReuseIDentifIEr: "Cell")                  }  overrIDe func collectionVIEw(_ collectionVIEw: UICollectionVIEw,cellForItemAt indexPath: IndexPath) -> UICollectionVIEwCell {    let cell = collectionVIEw.dequeueReusableCell(withReuseIDentifIEr: "Cell",for: indexPath)        return cell  }}

非常感谢

解决方法 首先,我必须给我的两分钱,故事板很棒:)

对于此用例,您可能不想使用CollectionVIEwController.如果您决定使用它,我还会发布另一个答案.这是将CollectionVIEw移动到VIEwController的最快方法.这解决了您的问题,但没有考虑自动布局.

1)在VIEwController中替换这些行:

let fsPicVC = CollectionVIEwController(collectionVIEwLayout: layout)self.present(fsPicVC,animated: true) { }

let collectionVIEw = UICollectionVIEw(frame: vIEw.bounds,collectionVIEwLayout: layout)collectionVIEw.register(CollectionVIEwCell.self,forCellWithReuseIDentifIEr: "Cell")collectionVIEw.dataSource = selfvIEw.addSubvIEw(collectionVIEw)

2)将它添加到VIEwController的最底部(在VIEwController类之外):

extension VIEwController: UICollectionVIEwDataSource {  func numberOfSections(in collectionVIEw: UICollectionVIEw) -> Int {    return 1  }  func collectionVIEw(_ collectionVIEw: UICollectionVIEw,numberOfItemsInSection section: Int) -> Int {    return 10  }  func collectionVIEw(_ collectionVIEw: UICollectionVIEw,for: indexPath)    // Configure the cell    return cell  }}

最后,您可以删除CollectionVIEwController,因为它已被替换.

PS你也可能想要1)扩展VIEwController以符合UICollectionVIEwDelegateFlowLayout和2)使collectionVIEw全局.

总结

以上是内存溢出为你收集整理的ios – 键盘在UICollectionViewController中打破布局全部内容,希望文章能够帮你解决ios – 键盘在UICollectionViewController中打破布局所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1105143.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-28
下一篇 2022-05-28

发表评论

登录后才能评论

评论列表(0条)

保存