gpt4 book ai didi

ios - CollectionView 项目在 iPhone X 屏幕上未正确分配

转载 作者:行者123 更新时间:2023-11-29 00:05:29 25 4
gpt4 key购买 nike

我的 iOS 应用程序还不支持 iPhoneX 布局。

那是我的应用程序没有 iPhoneX 的启动屏幕(1124x2436、2436x1124)。

因此在 iPhoneX 上,UI 我的应用程序显示在 735x1334 区域。没关系。

现在我在 View 顶部添加了 UICollectionView。我分配了 CollectionViewItem 的大小,以便CollectionView 有 6 个水平项目

在 iPhone8(iOS11.2) 上,CollectionViewItems 按照我的预期分配

但在 iPhoneX(iOS11.2) 上,CollectionView 有两行,第一行是空白,所以它甚至可以滚动。

enter image description here

如果您能告诉我如何按照我的预期布局我的 collectionview,我将不胜感激。

我的代码如下,

View Controller.m

- (void)loadView
{
self.view = [[FirstView alloc] init];
}

FirstView.m

- (id)init
{
self = [super init];
if (self) {
self.backgroundColor = UIColor.whiteColor;

[self initGridView];
}
return self;
}

- (void)initGridView
{
_gridView = [[GridView alloc] init];

[self addSubview:_gridView];
}

- (void)layoutSubviews
{
[super layoutSubviews];

[self layoutGridView];
}

- (void)layoutGridView
{
CGSize parentSize = _gridView.superview.frame.size;

_gridView.frame = CGRectMake(0, 0, parentSize.width, 48);
}

GridView.m

- (id)init
{
self = [super initWithFrame:CGRectZero collectionViewLayout:[[UICollectionViewFlowLayout alloc] init]];
if (self) {
self.delegate = self;
self.dataSource = self;

[self registerClass:[UICollectionViewCell class] forCellWithReuseIdentifier:NSStringFromClass([UICollectionViewCell class])];

self.backgroundColor = UIColor.grayColor;
}

return self;
}

#pragma mark -
#pragma mark UICollectionViewDataSource

- (UICollectionViewCell *)collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(nonnull NSIndexPath *)indexPath
{
NSString *cellName = NSStringFromClass([UICollectionViewCell class]);
UICollectionViewCell *cell = [collectionView dequeueReusableCellWithReuseIdentifier:cellName forIndexPath:indexPath];

if (indexPath.row % 2 == 0) {
cell.contentView.backgroundColor = UIColor.blueColor;
}
else {
cell.contentView.backgroundColor = UIColor.orangeColor;
}

return cell;
}

- (NSInteger)collectionView:(UICollectionView *)collectionView numberOfItemsInSection:(NSInteger)section
{
return 6;
}

- (CGSize)collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout*)collectionViewLayout sizeForItemAtIndexPath:(NSIndexPath *)indexPath
{
CGSize selfSize = self.frame.size;
CGFloat width = selfSize.width / 6;

return CGSizeMake(width, 48);
}

- (CGFloat)collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout*)collectionViewLayout minimumLineSpacingForSectionAtIndex:(NSInteger)section
{
return 0;
}

- (CGFloat)collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout*)collectionViewLayout minimumInteritemSpacingForSectionAtIndex:(NSInteger)section
{
return 0;
}

最佳答案

我通过在 GridView.m 文件的 init() 方法中添加以下行解决了该问题。

if #available(iOS 11.0, *) {
self.collectionView.contentInsetAdjustmentBehavior = .never
} else {
// Fallback on earlier versions
}

谢谢。

关于ios - CollectionView 项目在 iPhone X 屏幕上未正确分配,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48163117/

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