此刻,我對的CollectionView標題單元實現了一個簡單UICollectionReusableView類:訪問中的CollectionView標題單元格搜索欄 - 斯威夫特
class SearchBarCollectionReusableView: UICollectionReusableView {
@IBOutlet weak var searchBar:UISearchBar!
@IBOutlet weak var filterSegCtrl:UISegmentedControl!
override init(frame: CGRect) {
super.init(frame: frame)
}
required init(coder aDecoder: NSCoder) {
super.init(coder: aDecoder)
}
}
我再加入這個我UICollectionViewClass顯示下面的頭:
override func collectionView(collectionView: UICollectionView!, viewForSupplementaryElementOfKind kind: String!, atIndexPath indexPath: NSIndexPath!) -> UICollectionReusableView! {
var reusableview:UICollectionReusableView!
if kind == UICollectionElementKindSectionHeader {
let headerView:SearchBarCollectionReusableView = collectionView.dequeueReusableSupplementaryViewOfKind(UICollectionElementKindSectionHeader, withReuseIdentifier: "SearchBar", forIndexPath: indexPath) as SearchBarCollectionReusableView
reusableview = headerView
}
return reusableview
}
我要如何訪問性能的UISearchBar包括代表一nd 正文在我的UICollectionViewClass?