- 对于biilibili下拉刷新的实现
- 由于collectionView并没有wrapperView,目前只可支持tableView
- (BBRfreshView *)backGoundView
{
if (!_backGoundView) {
_backGoundView = [BBRfreshView new ];
_backGoundView.frame = self.tableView.frame;
_backGoundView.backgroundColor = [UIColor clearColor];
}
return _backGoundView;
}
- (void)viewDidLoad {
[self.view addSubview:self.tableView];
[self.view addSubview:self.backGoundView];
[self.backGoundView showFromScrollView:self.tableView];
self.backGoundView.showView.backgroundColor = [UIColor grayColor];
}
- iOS 8+