gpt4 book ai didi

ios - UICollectionView swift 中的一个自定义单元格

转载 作者:行者123 更新时间:2023-11-28 15:48:27 24 4
gpt4 key购买 nike

我的应用程序中有一个页面,顶部有一个 slider ,底部有一个重复列表。现在我正在寻找一种解决方案,可以使用单个 UICollectionView 完成整个 UI,是否可以让单个单元格具有自定义设计和来自其他单元格的数据源?

这是我的设计: enter image description here

或者我应该分别使用两个不同的 UICollectionView 吗?最好的解决方案是什么?

另外,我以编程方式创建了 UI。不是 Storyboard。

最佳答案

正如我在评论中提到的,你必须接受

  1. 一个 Collection View
  2. 两个部分

在第一节通过项目:1

第二部分中的传递项:数组计数

画廊这里是示例代码

    GalleryCollectionViewCell *cell = [collectionView dequeueReusableCellWithReuseIdentifier:kGalleryCell forIndexPath:indexPath];
if (cell.gestureRecognizers.count <= 0) {
UISwipeGestureRecognizer *swipeNext = [[UISwipeGestureRecognizer alloc] initWithTarget:self action:@selector(cellDidSwipe:)];
swipeNext.direction = UISwipeGestureRecognizerDirectionLeft;

UISwipeGestureRecognizer *swipePrev = [[UISwipeGestureRecognizer alloc] initWithTarget:self action:@selector(cellDidSwipe:)];
swipePrev.direction = UISwipeGestureRecognizerDirectionRight;

[cell setGestureRecognizers:@[swipeNext,swipePrev]];
}

关于ios - UICollectionView swift 中的一个自定义单元格,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42620965/

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