3

我有一个使用 JSON 填充的 UICollectionView。它是带有电影海报的封面流式布局。

我想知道是否有办法让我在屏幕上的某个点显示单元格的标题属性,以便当我水平滚动时,显示最中心可见单元格的标题。

我曾尝试使用 indexPathForItemAtPoint,但该点似乎随着集合视图滚动,始终显示相同的索引。

编辑:添加代码:

UIView *test = [[UIView alloc] initWithFrame:CGRectMake(10, 30, self.view.frame.size.width+180, 390)];
test.backgroundColor = [UIColor clearColor];
superView.backgroundColor = [UIColor blackColor];


PerspectiveFlowLayout *layout = [[PerspectiveFlowLayout alloc]init];
self.boxes.bounces = NO;

BoxView *boxes = [[BoxView alloc] initWithFrame:test.frame collectionViewLayout:layout];


[test addSubview:boxes];
[superView addSubview: test];
NSIndexPath *path = [self.boxes indexPathForItemAtPoint:[self.boxes convertPoint:CGPointMake(100.0, 100.0) toView:[self.boxes superview]]];

Cell *atpoint = [self.boxes cellForItemAtIndexPath:path];


NSLog(@"%@", atpoint.model.name);

非常感谢你的帮助,洛根

4

1 回答 1

1

在执行转换点时尝试交换项目,因此您将从超级视图转到集合视图:

NSIndexPath *path = [self.boxes indexPathForItemAtPoint:[[self.boxes superview] convertPoint:CGPointMake(100.0, 100.0) toView:self.boxes]];
于 2013-09-12T20:23:45.983 回答