如何在不影响刷新控件功能的情况下禁用collectionview弹跳效果?

时间:2019-07-16 10:10:53

标签: ios swift uicollectionview uirefreshcontrol

我也想停止收集弹跳效果,我想拉刷新。

    collectionView.alwaysBounceHorizontal = false
    collectionView.alwaysBounceVertical = true
    collectionView.isDirectionalLockEnabled = true
    collectionView.isScrollEnabled = true
    collectionView.bounces =  false

如何在集合视图中启用拉动刷新而没有反弹效果?

1 个答案:

答案 0 :(得分:0)

您可以添加UIRefreshControl并添加操作方法。

  let refreshControl = UIRefreshControl()
  refreshControl.tintColor = .blue
  refreshControl.addTarget(self, action: #selector(refresh), for: .valueChanged)
  collectionView.addSubview(refreshControl)
  collectionView.alwaysBounceVertical = true