gpt4 book ai didi

ios - 如何在 cellForRowAtIndexPath 方法中判断滚动方向(右上左下)

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

当我使用UITableViewUITableViewCell时,在-cellForRowAtIndexPath:方法中,应该根据方向设置一些属性tableview的滚动方向。我怎样才能得到它?

最佳答案

您可以使用 willDisplayCell :

- (void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath 
{
static NSInteger previousPresnetedCell = 0;

if (indexPath.row < previousPresnetedCell) {

NSLog(@" ** Scrolled up");

} else {

NSLog(@" ** Scrolled down");

}

previousPresnetedCell = indexPath.row;
}

问题是,你想如何设置初始属性(在开始滚动 tableView 之前)?您可以通过简单地使用 scrolView 委托(delegate)方法“scrollViewWillBeginDragging”来检测它:

- (void)scrollViewWillBeginDragging:(UIScrollView *)scrollView 
{
self.tableViewAlreadyScrolled = YES;
}

关于ios - 如何在 cellForRowAtIndexPath 方法中判断滚动方向(右上左下),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27990672/

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