Shazam icon indicating copy to clipboard operation
Shazam copied to clipboard

A pure-Swift library for nested display of horizontal and vertical scrolling views

Results 1 Shazam issues
Sort by recently updated
recently updated
newest added

不确定这个是不是我的姿势不正确,文章中提到在 child vc 分别实现下拉刷新,我使用了最简单的系统控件 `UIRefreshControl`. 大致代码: ```Swift override func viewDidLoad() { // ... let refreshControl = UIRefreshControl() tableView.refreshControl = refreshControl refreshControl.addTarget(self, action: #selector(refresh), for: .valueChanged) } @objc private func refresh()...