我在我的
代码中使用了一个UITableView,很高兴知道
用户是手动滚动UITableView还是以编程方式完成.有没有办法知道?
UITableView是UIScrollView的子类.
所以你可以使用这个
if (!tableView.isDragging && !tableView.isDecelerating)
{
// the table is *not* being scrolled
}
这个工作.我在我的一个应用程序中使用它.
原文链接:https://www.f2er.com/iOS/329916.html