コレクションのサブビューに追加することでUIRefreshControl
、UICollectionView
(またはUIScrollView
そのことについては任意に)追加できます。
UIRefreshControl *refreshControl = [[UIRefreshControl alloc] init];
[refreshControl addTarget:self action:@selector(handleRefresh:) forControlEvents:UIControlEventValueChanged];
[self.collectionView addSubview:refreshControl];
コレクション ビューのレイアウトにUICollectionViewScrollDirectionHorizontal
.
更新コントロールを左に配置するようにオーバーライドしようとlayoutSubviews
しましたが、この方法ではスクロールの進行状況を追跡できません。水平レイアウトで動作するようにだますことはできますか?