iOS UITableView表格做搜索功能,右边的搜索按钮

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了iOS UITableView表格做搜索功能,右边的搜索按钮相关的知识,希望对你有一定的参考价值。

   当我们阅读一篇文章,肯定过一段时间会忘记,那时候我们就需要用到搜索这个功能,搜索我们当时阅读的文字,用到搜索最多的恐怕是我用到的通讯录,

自从出了微信,一直在想,微信的那个右边顶部的搜索按钮是怎么加的,一直在想,最多想多的要么是一张图片,只能是张图片,如果是图片,那个只能自定义右侧,所以这个方法肯定是可以,还有一种情况,就是自带的方法有这个图片。

- (NSArray *)sectionIndexTitlesForTableView:(UITableView *)tableView
{
    return  @[@"{search}"];
    //等价于[arr addObject:UITableViewIndexSearch];
}

//api给出这样的解释

UIKIT_EXTERN NSString *const UITableViewIndexSearch NS_AVAILABLE_ios(3_0) __TVOS_PROHIBITED;

Including this constant string in the array of strings returned by sectionIndexTitlesForTableView: will cause a magnifying glass icon to be displayed at that location in the index.

// This should generally only be used as the first title in the index.


本文出自 “雪花飞落满人间” 博客,请务必保留此出处http://smengxiang.blog.51cto.com/11204872/1861306

以上是关于iOS UITableView表格做搜索功能,右边的搜索按钮的主要内容,如果未能解决你的问题,请参考以下文章

点击空的 UITableView 退出搜索栏

iOS UI控件7(UITableView)

iOS7 中 UISearchBar 和 UITableView 的问题

iOS 选择单元格

iOS UITableView 与 UIPickerView

将 UICollectionView 和 UITableView 放在 iOS 的 UIScrollView 中是一种好习惯吗?