在我的应用程序中,我使用带有集合视图的刷新控件。
UICollectionView *collectionView = [[UICollectionView alloc] initWithFrame:[UIScreen mainScreen].bounds];
collectionView.alwaysBounceVertical = YES;
...
[self.view addSubview:collectionView];
UIRefreshControl *refreshControl = [UIRefreshControl new];
[collectionView addSubview:refreshControl];
iOS7 有一些令人讨厌的错误,当您将集合视图拉下并且在刷新开始时不松开手指时,垂直contentOffset
向下移动 20-30 点会导致难看的滚动跳跃。
如果您在UITableViewController
. UIRefreshControl
但对他们来说,通过将您的实例分配给UITableView
名为的私有财产可以轻松解决_refreshControl
:
@interface UITableView ()
- (void)_setRefreshControl:(UIRefreshControl *)refreshControl;
@end
...
UITableView *tableView = [[UITableView alloc] initWithFrame:[UIScreen mainScreen].bounds];
[self.view addSubview:tableView];
UIRefreshControl *refreshControl = [UIRefreshControl new];
[tableView addSubview:refreshControl];
[tableView _setRefreshControl:refreshControl];
但是UICollectionView
没有这样的属性,所以必须有一些方法来手动处理它。