在UICollectionViewController Header上添加UISearchBar

时间:2013-04-04 09:33:57

标签: ios xcode uitextfield uisearchbar uicollectionview

嗨,我想在UICollectionViewController的顶部添加搜索选项。我从这里尝试了一些代码,但它不适用于我。

到目前为止我所做的是:

  1. 创建了一个UICollectioViewController
  2. 然后选中标题的复选框
  3. 在标题行
  4. 中添加UITextfield
  5. 创建了UICollectionViewReusablecell,然后在那里声明了我的UISearchBar
  6. 但是我不知道如何从UITextfield获取值并检查我的数组中的值“所有详细信息”并在tableview中显示结果?

    目前在UICollectionViewCell我正在使用此代码将文字输入UITextField

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

    请检查以下链接。我不明白这一点,也许你可以帮助我

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

1 个答案:

答案 0 :(得分:0)

请在Github中找到以下链接以及示例代码。您可以使用这些链接下载并集成UICollectionView和UISearchBar。

https://maniacdev.com/2015/01/example-how-to-integrate-uicollectionview-with-uisearchbar

Searching and filtering cells in a UICollectionView