你知道为什么框架会以这种方式改变吗?
我已经在下面列出了最相关的部分,或者你可以在这里找到测试项目: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中打破布局所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)