2013-04-04 104 views
4

嗨,我想在UICollectionViewController的頂部添加一個搜索選項。我嘗試了一些代碼,但它不適合我。在UICollectionViewController標題上添加UISearchBar標題

什麼我迄今所做的是:

  1. 創建一個UICollectioViewController
  2. 然後選中複選框頭
  3. 添加UITextfield標題行
  4. 創建一個UICollectionViewReusablecell,然後在那裏宣佈我的UISearchBar

但我不知道如何從UITextfield拿這個值與我的數組「所有細節」的值檢查並顯示在tableview中的結果?

目前UICollectionViewCell我使用這個代碼採取進入到UITextField文本:

[searchTextfield addTarget:self action:@selector(check:) forControlEvents:UIControlEventEditingChanged]; 

下面請檢查該鏈接。我不明白這一點,也許你可以幫我

http://www.appcoda.com/supplementary-view-uicollectionview-flow-layout/ 

回答