gpt4 book ai didi

iOS tableview 如何检查它是向上还是向下滚动

转载 作者:IT王子 更新时间:2023-10-29 05:16:17 24 4
gpt4 key购买 nike

我正在学习如何使用 TableView,我想知道如何确定 tableView 是向上滚动还是向下滚动?我一直在尝试诸如此类的各种事情,但它没有奏效,因为下面是 ScrollView ,我有一个 TableView 。任何建议都会很棒,因为我是这方面的新手......

  func scrollViewWillBeginDragging(_ scrollView: UIScrollView) {
if scrollView.panGestureRecognizer.translation(in: scrollView).y < 0 {
print("down")
} else {
print("up")
}
}

这是我的 tableView 代码中的内容

func tableView(_ tableView:UITableView, numberOfRowsInSection section:Int) -> Int {
return Locations.count
}

func tableView(tableView: UITableView, willDisplayCell cell: UITableViewCell, forRowAtIndexPath indexPath: NSIndexPath) {
if indexPath.row == self.Posts.count - 4 {

reloadTable(latmin: self.latmin,latmax: self.latmax,lonmin: self.lonmin,lonmax: self.lonmax,my_id: myID)
print("Load More")
}

}


func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCell(withIdentifier: "HomePageTVC", for: indexPath) as! NewCell


cell.post.text = Posts[indexPath.row]
cell.fullname.setTitle(FullName[indexPath.row],for: UIControlState.normal)

return cell
}

最佳答案

就像@maddy 在您的问题的评论中所说,您可以检查您的 UITableView正在使用 UIScrollViewDelegate 滚动更进一步,您可以通过同时使用 scrollViewDidScroll 来检查它滚动到哪个方向和 scrollViewWillBeginDragging功能

// we set a variable to hold the contentOffSet before scroll view scrolls
var lastContentOffset: CGFloat = 0

// this delegate is called when the scrollView (i.e your UITableView) will start scrolling
func scrollViewWillBeginDragging(_ scrollView: UIScrollView) {
self.lastContentOffset = scrollView.contentOffset.y
}

// while scrolling this delegate is being called so you may now check which direction your scrollView is being scrolled to
func scrollViewDidScroll(_ scrollView: UIScrollView) {
if self.lastContentOffset < scrollView.contentOffset.y {
// did move up
} else if self.lastContentOffset > scrollView.contentOffset.y {
// did move down
} else {
// didn't move
}
}

此外:您不需要子类化您的 UIViewControllerUIScrollViewDelegate如果您已经对 UIViewController 进行了子类化与 UITableViewDelegate因为UITableViewDelegate已经是 UIScrollViewDelegate 的子类

关于iOS tableview 如何检查它是向上还是向下滚动,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43268714/

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