最佳答案
我想在 iOS6下的 UICollectionViewController
中实现下拉刷新。这是很容易实现与 UITableViewController
,像这样:
UIRefreshControl *refreshControl = [[UIRefreshControl alloc] init];
[refreshControl addTarget:self action:@selector(startRefresh:)
forControlEvents:UIControlEventValueChanged];
self.refreshControl = refreshControl;
上面实现了一个很好的液滴动画,作为本机小部件的一部分。
由于 UICollectionViewController
是一个“更进化”的 UITableViewController
,人们可能会期待某种特性的奇偶性,但我找不到任何地方的内置方式来实现这一点的参考。
UIRefreshControl
是否可以与 UICollectionViewController
一起使用,尽管头部和文档都声明 UIRefreshControl
应该用于表视图?