ios – 如何将集合单元格宽度设置为动态拉伸到手机宽度

ios – 如何将集合单元格宽度设置为动态拉伸到手机宽度,第1张

概述如何设置集合单元视图以动态拉伸到 iphone屏幕宽度(例如 iphone 5s,iphone 6 plus)? 我试过了: - (UICollectionViewCell *)collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)index 如何设置集合单元视图以动态拉伸到 iphone屏幕宽度(例如 iphone 5s,iphone 6 plus)?

我试过了:

- (UICollectionVIEwCell *)collectionVIEw:(UICollectionVIEw *)collectionVIEw                  cellForItemAtIndexPath:(NSIndexPath *)indexPath {    (ResultCell *)[collectionVIEw dequeueReusableCellWithReuseIDentifIEr:cellClass                                                                      forIndexPath:indexPath];    cell.bounds = CGRectMake(0,self.vIEw.bounds.size.wIDth,150);    return cell;}

这不起作用.我没有看到内容延伸到屏幕的右侧.

我试过添加这个委托方法:

- (CGSize)collectionVIEw:(UICollectionVIEw *)collectionVIEw            layout:(UICollectionVIEwLayout *)collectionVIEwLayout            sizeforItemAtIndexPath:(NSIndexPath *)indexPath{    CGSize cellSize;    cellSize.wIDth = self.vIEw.bounds.size.wIDth;    // body vIEw height    cellSize.height = 150;    return cellSize;}

我在方法中设置了断点,但该方法永远不会被调用?

解决方法 我对同一个用例有同样的问题.我终于结束了
- (CGSize)collectionVIEw:(UICollectionVIEw *)collectionVIEw layout:(UICollectionVIEwLayout*)collectionVIEwLayout sizeforItemAtIndexPath:(NSIndexPath *)indexPath{    return CGSizeMake(collectionVIEw.bounds.size.wIDth,150);}

这会更改集合视图的每个项目(单元格)的大小.因此,您可以使用此更改每个单元格的大小.在这里,我需要单元格宽度与我的UICollectionVIEw相同,所以我传递了UICollectionvIEw的宽度和我想要的特定高度.希望这会有所帮助.

此外,没有必要在 – (UICollectionVIEwCell *)collectionVIEw:(UICollectionVIEw *)collectionVIEw cellForItemAtIndexPath:(NSIndexPath *)indexPath中设置单元格边界,因为大小通过 – (CGSize)collectionVIEw设置:(UICollectionVIEw *)collectionVIEw布局:( UICollectionVIEwLayout *)collectionVIEwLayout sizeforItemAtIndexPath:(NSIndexPath *)indexPath

还要确保您已连接所需的代表和DataSources到UICollectionVIEw

总结

以上是内存溢出为你收集整理的ios – 如何将集合单元格宽度设置为动态拉伸到手机宽度全部内容,希望文章能够帮你解决ios – 如何将集合单元格宽度设置为动态拉伸到手机宽度所遇到的程序开发问题。

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

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

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

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

发表评论

登录后才能评论

评论列表(0条)

保存