我用下面的代碼在UICollectionViewController
拉在UICollectionView刷新視圖控制器
override func viewDidLoad() {
self.collectionView!.alwaysBounceVertical = true
let refresher = UIRefreshControl()
refresher.addTarget(self, action: "refreshStream", forControlEvents: .ValueChanged)
refreshControl = refresher
collectionView!.addSubview(refreshControl!)
}
func refreshStream() {
print("refresh")
self.collectionView?.reloadData()
refreshControl?.endRefreshing()
}
現在我需要它有UICollectionView
工作UIViewController
內,我現在用Google搜索了一個小時,但不能得到它加工。 我感謝任何幫助。
是不是工作? http://stackoverflow.com/questions/14678727/uirefreshcontrol-on-uicollectionview-only-works-if-the-collection-fills-the-heig – markov
主要代碼是客觀的C和迅速的評論讓我很多問題: –
使用未解析的標識符'Const' –