考虑具有流动布局和水平方向的UICollectionView
。默认情况下,单元格从上到下,从左到右排序。像这样:
1 4 7 10 13 16
2 5 8 11 14 17
3 6 9 12 15 18
在我的情况下,集合视图被分页,并且它的设计使得特定数量的单元格适合每个页面。因此,更自然的顺序是:
1 2 3 10 11 12
4 5 6 - 13 14 15
7 8 9 16 17 18
如果没有实现我自己的自定义布局,最简单的方法是什么?特别是,我不想放弃使用UICollectionViewFlowLayout
免费提供的任何功能(例如插入/删除动画)。
或者一般来说,如何在流布局上实现重新排序功能f(n)
?例如,同样适用于从右到左的排序。
我的第一种方法是继承UICollectionViewFlowLayout
并覆盖layoutAttributesForItemAtIndexPath:
:
- (UICollectionViewLayoutAttributes *)layoutAttributesForItemAtIndexPath:(NSIndexPath *)indexPath
{
NSIndexPath *reorderedIndexPath = [self reorderedIndexPathOfIndexPath:indexPath];
UICollectionViewLayoutAttributes *layout = [super layoutAttributesForItemAtIndexPath:reorderedIndexPath];
layout.indexPath = indexPath;
return layout;
}
reorderedIndexPathOfIndexPath:
为f(n)
的位置。通过调用super
,我不必手动计算每个元素的布局。
此外,我必须覆盖layoutAttributesForElementsInRect:
,这是布局用于选择要显示的元素的方法。
- (NSArray *)layoutAttributesForElementsInRect:(CGRect)rect
{
NSMutableArray *result = [NSMutableArray array];
NSInteger sectionCount = 1;
if ([self.collectionView.dataSource respondsToSelector:@selector(numberOfSectionsInCollectionView:)])
{
sectionCount = [self.collectionView.dataSource numberOfSectionsInCollectionView:self.collectionView];
}
for (int s = 0; s < sectionCount; s++)
{
NSInteger itemCount = [self.collectionView.dataSource collectionView:self.collectionView numberOfItemsInSection:s];
for (int i = 0; i < itemCount; i++)
{
NSIndexPath *indexPath = [NSIndexPath indexPathForItem:i inSection:s];
UICollectionViewLayoutAttributes *layout = [self layoutAttributesForItemAtIndexPath:indexPath];
if (CGRectIntersectsRect(rect, layout.frame))
{
[result addObject:layout];
}
}
}
return result;
}
在这里,我只是尝试每个元素,如果它在给定的rect
范围内,我会返回它。
如果采用这种方法,我有以下更具体的问题:
layoutAttributesForElementsInRect:
覆盖,或者提高效率吗?initialLayoutAttributesForAppearingItemAtIndexPath:
和finalLayoutAttributesForDisappearingItemAtIndexPath:
有关,但我无法准确指出问题所在。f(n)
取决于每个页面的列数和行数。有没有办法从UICollectionViewFlowLayout
中提取这些信息,而不是自己编写硬编码?我想到了querying layoutAttributesForElementsInRect:
与集合视图的边界,并从那里推断出行和列,但这也感觉效率低下。答案 0 :(得分:15)
我对你的问题已经考虑了很多,并考虑了以下几点:
对FlowLayout进行子类化似乎是重新排序单元格和使用流布局动画的最有效和最有效的方法。除了两个重要的事情之外,你的方法是有效的:
layoutAttributesForItemAtIndexPath
覆盖中,您会发送[super layoutAttributesForItemAtIndexPath:[0, 3]]
之类的消息,您将得到一个nil
对象,因为只有2个单元格:[0,0]和[0,1] ]。这将是你最后一页的问题。targetContentOffsetForProposedContentOffset:withScrollingVelocity:
并手动设置itemSize
,minimumLineSpacing
和minimumInteritemSpacing
等属性来实现分页行为,但要让您的项目保持对称是非常有用的,定义分页边框等。我thnik,对流程布局进行子类化正在为您准备很多实现,因为您想要的不再是流布局。但让我们一起思考它。 关于你的问题:
layoutAttributesForElementsInRect:
覆盖正是原始苹果实现的方式,因此无法简化它。但是,对于您的情况,您可以考虑以下内容:如果每页有3行项目,并且第一行中的项目框架与矩形框架相交,则(如果所有项目具有相同大小)第二和第三行项目的框架相交这个矩形。f(n)=(n%a²)+(a - 1)(列 - 行)+a²(n /a²); col =(n%a²)%a; row =(n%a²)/ a;
回答这个问题,流程布局不知道每列中有多少行,因为这个数字可能因列而异,具体取决于每个项目的大小。它也可以说每页上的列数,因为它取决于滚动位置,也可以变化。所以没有比查询layoutAttributesForElementsInRect
更好的方法了,但这也包括只能部分可见的单元格。由于您的单元格大小相等,理论上您可以通过水平滚动方向找出集合视图中有多少行:通过开始迭代计算它们的每个单元格并断开它们frame.origin.x
的更改。
所以,我认为,您有两种方法可以达到目的:
子类UICollectionViewLayout
。实现所有这些方法似乎很多工作,但这是唯一有效的方法。例如,您可以使用itemSize
,itemsInOneRow
等属性。然后你可以很容易地找到一个公式来根据它的数量来计算每个项目的框架(最好的方法是在prepareLayout
中进行并将所有框架存储在数组中,这样你就可以在{{}}中访问所需的框架。 {1}})。实施layoutAttributesForItemAtIndexPath
,layoutAttributesForItemAtIndexPath
和layoutAttributesForItemsInRect
也非常简单。在collectionViewContentSize
和initialLayoutAttributesForAppearingItemAtIndexPath
中,您只需将alpha属性设置为0.0即可。这就是标准流布局动画的工作原理。通过覆盖finalLayoutAttributesForDisappearingItemAtIndexPath
,您可以实现“分页行为”。
考虑使用流布局,targetContentOffsetForProposedContentOffset:withScrollingVelocity:
,水平滚动方向和项目大小等于屏幕大小来创建集合视图。每个屏幕尺寸一个项目。对于每个单元格,您可以将新的集合视图设置为具有垂直流布局的子视图,以及与其他集合视图相同的数据源,但具有偏移量。它非常有效,因为您可以重用包含9个(或其他)单元格块的整个集合视图,而不是使用标准方法重用每个单元格。所有动画都应该正常工作。
Here您可以使用布局子类化方法下载示例项目。 (#2)
答案 1 :(得分:4)
使用标准UICollectionViewFlowLayout
2 集合视图不是一个简单的解决方案吗?
甚至更好:拥有一个带水平滚动的页面视图控制器,每个页面都是一个具有正常流程布局的集合视图。
我的想法如下:在您的UICollectionViewController -init method
中,您创建了第二个集合视图,其右边的框架偏移为原始集合视图宽度。然后将其作为子视图添加到原始集合视图中。要在集合视图之间切换,只需添加滑动识别器即可。要计算偏移值,您可以将集合视图的原始帧存储在ivar cVFrame
中。要识别您的集合视图,您可以使用标记。
init
方法的示例:
CGRect cVFrame = self.collectionView.frame;
UICollectionView *secondView = [[UICollectionView alloc]
initWithFrame:CGRectMake(cVFrame.origin.x + cVFrame.size.width, 0,
cVFrame.size.width, cVFrame.size.height)
collectionViewLayout:[UICollectionViewFlowLayout new]];
[secondView setBackgroundColor:[UIColor greenColor]];
[secondView setTag:1];
[secondView setDelegate:self];
[secondView setDataSource:self];
[self.collectionView addSubview:secondView];
UISwipeGestureRecognizer *swipeRight = [[UISwipeGestureRecognizer alloc]
initWithTarget:self action:@selector(swipedRight)];
[swipeRight setDirection:UISwipeGestureRecognizerDirectionRight];
UISwipeGestureRecognizer *swipeLeft = [[UISwipeGestureRecognizer alloc]
initWithTarget:self action:@selector(swipedLeft)];
[swipeLeft setDirection:UISwipeGestureRecognizerDirectionLeft];
[self.collectionView addGestureRecognizer:swipeRight];
[self.collectionView addGestureRecognizer:swipeLeft];
swipeRight
和swipeLeft
方法的示例:
-(void)swipedRight {
// Switch to left collection view
[self.collectionView setContentOffset:CGPointMake(0, 0) animated:YES];
}
-(void)swipedLeft {
// Switch to right collection view
[self.collectionView setContentOffset:CGPointMake(cVFrame.size.width, 0)
animated:YES];
}
然后实现DataSource方法并不是一个大问题(在您的情况下,您希望每页有9个项目):
-(NSInteger)collectionView:(UICollectionView *)collectionView
numberOfItemsInSection:(NSInteger)section {
if (collectionView.tag == 1) {
// Second collection view
return self.dataArray.count % 9;
} else {
// Original collection view
return 9; // Or whatever
}
在方法-collectionView:cellForRowAtIndexPath
中,如果是第二个集合视图,则需要使用偏移量从模型中获取数据。
另外,不要忘记为第二个集合视图注册可重用单元格的类。您还可以只创建一个手势识别器,并识别左侧和右侧的滑动。这取决于你。
我认为,现在它应该可行,试一试: - )
答案 2 :(得分:2)
您有一个实现UICollectionViewDataSource
协议的对象。
在collectionView:cellForItemAtIndexPath:
内,只需返回您要返回的正确项目。
我不明白哪里会有问题。
编辑:好的,我看到了问题。以下是解决方案:http://www.skeuo.com/uicollectionview-custom-layout-tutorial,具体步骤17至25.这不是一项大量的工作,可以很容易地重复使用。
答案 3 :(得分:0)
这是我的解决方案,我没有使用动画进行测试,但我认为它会很好地进行一些改动,希望它有用
CELLS_PER_ROW = 4;
CELLS_PER_COLUMN = 5;
CELLS_PER_PAGE = CELLS_PER_ROW * CELLS_PER_COLUMN;
UICollectionViewFlowLayout* flowLayout = (UICollectionViewFlowLayout*)collectionView.collectionViewLayout;
flowLayout.scrollDirection = UICollectionViewScrollDirectionHorizontal;
flowLayout.itemSize = new CGSize (size.width / CELLS_PER_ROW - delta, size.height / CELLS_PER_COLUMN - delta);
flowLayout.minimumInteritemSpacing = ..;
flowLayout.minimumLineSpacing = ..;
..
- (UICollectionViewCell *)collectionView:(UICollectionView *)collectionView
cellForItemAtIndexPath:(NSIndexPath *)indexPath
{
NSInteger index = indexPath.row;
NSInteger page = index / CELLS_PER_PAGE;
NSInteger indexInPage = index - page * CELLS_PER_PAGE;
NSInteger row = indexInPage % CELLS_PER_COLUMN;
NSInteger column = indexInPage / CELLS_PER_COLUMN;
NSInteger dataIndex = row * CELLS_PER_ROW + column + page * CELLS_PER_PAGE;
id cellData = _data[dataIndex];
...
}