XLPagerTabStrip的翻页通常是通过滑动或单击ButtonBarView的索引来完成的。
但是我想创建一个底部刷新控件,当它到达底部刷新时,我想移到下一个索引。
override func viewDidLoad() {
super.viewDidLoad()
//MARK:- bottomRefreshControl
bottomRefreshControl.triggerVerticalOffset = 100.0
bottomRefreshControl.addTarget(self, action: #selector(refresh), for: .valueChanged)
collectionView.bottomRefreshControl = bottomRefreshControl
}
@objc func refresh() {
bottomRefreshControl.endRefreshing()
// i need code~!!
}