gpt4 book ai didi

iOS Collection View

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

我是 IOS 开发新手,

我正在设计一个界面,我想使用 Collection View 将控件放置在网格中,

为此,我使用了如下图所示的集合

enter image description here

但是,在运行时,该屏幕显示为全黑:

enter image description here

我期待看到我设计的界面,如第一张图片所示。但为什么界面显示为全黑呢?

最佳答案

UIcollectionView 的默认颜色只有当你想让它可见时才会看起来像黑色尝试更改 UicollectionView 的 View 颜色并且你想让你的网格可见布局意味着将你的 Collection View 与委托(delegate)和数据源连接起来并使用 Collection View 委托(delegate)功能。

-(NSInteger)numberOfSectionsInCollectionView:(UICollectionView *)collectionView
{
return 1;
}

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


- (UICollectionViewCell *)collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)indexPath{
static NSString *identifier = @"Cell";

UICollectionViewCell *cell = [collectionView dequeueReusableCellWithReuseIdentifier:identifier forIndexPath:indexPath];

return cell;
}

这是 Uicollection View 的好教程 Look at this link

关于iOS Collection View ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20513162/

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