gpt4 book ai didi

ios - Collectionview 内容大小错误

转载 作者:塔克拉玛干 更新时间:2023-11-02 20:15:50 25 4
gpt4 key购买 nike

我目前正在使用 UICollectionView 开发一个应用程序。我需要知道 contentSize 的高度,这是我通过

self.collectionView.collectionViewLayout.collectionViewContentSize.height

现在可以正常工作了,但是对于纵向模式,返回值总是不正确。我应该怎么做才能达到我的需要?

最佳答案

只需在 viewDidAppear 和 didRotateFromInterfaceOrientation 中获取 self.collectonView.contentSize

- (void)viewDidAppear:(BOOL)animated{
NSLog(@"%0.0f-%0.0f",self.collectionView.contentSize.width,self.collectionView.contentSize.height);
}

-(void)didRotateFromInterfaceOrientation:(UIInterfaceOrientation)fromInterfaceOrientation{
NSLog(@"%0.0f-%0.0f",self.collectionView.contentSize.width,self.collectionView.contentSize.height);
}

关于ios - Collectionview 内容大小错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14939879/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com