我在 UIViewController 上有一个 UITableView。这个表有“说”5个可见的类别可供选择。但是在包含内容的数组中,我“说”了 10 个类别。我现在创建的是一个普通的滚动表,它从索引 0 上的类别 1 到索引 9 上的类别 10。但我更想要的是类别 1 也在类别 10 之后,反之亦然。
所以基本上是一个静态数组的无限循环。
我已经尝试过使用 scrollViewDidScroll: 方法,但是当我这样做时,它不会像您期望 UITableView 滚动那样滚动。它跑到一个随机点,移动一两个类别是不可能的。
这是我的代码示例。希望有人可以提供帮助。
- (void)scrollViewDidScroll:(UIScrollView *)scrollView
{
if (scrollView == categoryView){
if (categoryView.contentOffset.y > 0.0) {
loopcounter++;
NSLog(@"ScrollView Scrolled DOWN");
[categorytablecontent insertObject:[categorytablecontent objectAtIndex:0] atIndex:[categorytablecontent count]-1];
[categorytablecontent removeObjectAtIndex:0];
[categoryView reloadData];
}
if (categoryView.contentOffset.y < 0.0) {
loopcounter = [categorytablecontent count];
NSLog(@"ScrollView Scrolled UP");
[categorytablecontent insertObject:[categorytablecontent objectAtIndex:[categorytablecontent count]-1] atIndex:0];
[categorytablecontent removeObjectAtIndex:[categorytablecontent count]-1];
[categoryView reloadData];
}
a = categoryView.visibleCells;
for (UITableViewCell *cell in a){
NSLog(@"Current Visible cell: %@", cell.textLabel.text);
}
NSLog(@"Current offset: %@", categoryView.contentOffset.y);
}
}