Skip to content

clOudbb/BBRfreshView

Repository files navigation

BBRfreshView

Language

Platform iOS

  • 对于biilibili下拉刷新的实现
  • 由于collectionView并没有wrapperView,目前只可支持tableView

Implementation

- (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];
}

Requirements

  • iOS 8+

具体效果

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Packages

No packages published