服务器之家:专注于服务器技术及软件下载分享
分类导航

PHP教程|ASP.NET教程|Java教程|ASP教程|编程技术|正则表达式|C/C++|IOS|C#|Swift|Android|VB|R语言|JavaScript|易语言|vb.net|

服务器之家 - 编程语言 - IOS - iOS应用中UISearchDisplayController搜索效果的用法

iOS应用中UISearchDisplayController搜索效果的用法

2021-01-07 15:26颐和园 IOS

这篇文章主要介绍了iOS应用中UISearchDisplayController搜索效果的用法,包括点击搜索出现黑条问题的解决方法,代码基于传统的Objective-C,需要的朋友可以参考下

新建navigation-based project。打开.xib文件,拖一个search bar and search displaycontroller 对象到table view对象上方,如下图所示,选中file's owner ,打开connections面板:

iOS应用中UISearchDisplayController搜索效果的用法

现在我们来创建search bar和searchdisplay controller的出口。打开assistant editor,按住ctrl键,将searchdisplay controller拖到viewcontroller 的头文件中。创建一个名为searchdisplaycontroller的出口,然后点connect。

iOS应用中UISearchDisplayController搜索效果的用法

同样的方法为search bar创建连接。现在viewcontroller的头文件看起来像这样:

复制代码 代码如下:


#import <uikit/uikit.h>

 

@interface rootviewcontroller : uitableviewcontroller {   

uisearchdisplaycontroller *searchdisplaycontroller;     uisearchdisplaycontroller *searchbar;   

nsarray *allitems;   

nsarray *searchresults;

@property (nonatomic, retain) iboutlet uisearchdisplaycontroller *searchdisplaycontroller;

@property (nonatomic, retain) iboutlet uisearchdisplaycontroller *searchbar;

@property (nonatomic, copy) nsarray *allitems;

@property (nonatomic, copy) nsarray *searchresults; 

@end


你可能注意到,我初始化了两个nsarray。一个用于作为数据源,一个用于保存查找结果。在本文中,我使用字符串数组作为数据源。继续编辑.m文件前,别忘了synthesize相关属性:

 

  • @synthesize searchdisplaycontroller;

  • @synthesize searchbar;

  • @synthesize allitems;

  • @synthesize searchresults;

在viewdidload 方法中,我们构造了我们的字符串数组:

 

复制代码 代码如下:

 

 

- (void)viewdidload {

     [super viewdidload]; 

     // [self.tableview reloaddata];

     self.tableview.scrollenabled = yes;

      nsarray *items = [[nsarray alloc] initwithobjects:                       @"code geass",                       @"asura cryin'",                       @"voltes v",                       @"mazinger z",                       @"daimos",                       nil]; 

     self.allitems = items;

     [items release]; 

     [self.tableview reloaddata];

}


在table view的返回tableview行数的方法中,我们先判断当前table view是否是searchdisplaycontroller的查找结果表格还是数据源本来的表格,然后返回对应的行数:

复制代码 代码如下:


- (nsinteger)tableview:(uitableview *)tableview   numberofrowsinsection:(nsinteger)section { 

 

  nsinteger rows = 0;   

  if ([tableview           isequal:self.searchdisplaycontroller.searchresultstableview]){     

    rows = [self.searchresults count];

 }else{    

    rows = [self.allitems count];   

 }   

  return rows;

}


在tableview:cellforrowatindexpath:方法里,我们需要做同样的事:

复制代码 代码如下:


// customize the appearance of table view cells.

 

- (uitableviewcell *)tableview:(uitableview *)tableview           cellforrowatindexpath:(nsindexpath *)indexpath {

   static nsstring *cellidentifier = @"cell";  

   uitableviewcell *cell = [tableview                               dequeuereusablecellwithidentifier:cellidentifier];

   if (cell == nil) { 

      cell = [[[uitableviewcell alloc]                   initwithstyle:uitableviewcellstyledefault                   reuseidentifier:cellidentifier] autorelease];   

      cell.accessorytype = uitableviewcellaccessorydisclosureindicator;

   }  

   /* configure the cell. */

   if ([tableview isequal:self.searchdisplaycontroller.searchresultstableview]){   

    cell.textlabel.text = [self.searchresults objectatindex:indexpath.row];

   }else{

       cell.textlabel.text = [self.allitems objectatindex:indexpath.row];

   }  

   return cell;

}


现在来实现当搜索文本改变时的回调函数。这个方法使用谓词进行比较,并讲匹配结果赋给searchresults数组:

复制代码 代码如下:


- (void)filtercontentforsearchtext:(nsstring*)searchtext                               scope:(nsstring*)scope {

 

   nspredicate *resultpredicate = [nspredicate                                      predicatewithformat:@"self contains[cd] %@",                                     searchtext];  

   self.searchresults = [self.allitems filteredarrayusingpredicate:resultpredicate];

}


接下来是uisearchdisplaycontroller的委托方法,负责响应搜索事件:

复制代码 代码如下:


#pragma mark - uisearchdisplaycontroller delegate methods

 

-(bool)searchdisplaycontroller:(uisearchdisplaycontroller *)controller  shouldreloadtableforsearchstring:(nsstring *)searchstring {

   [self filtercontentforsearchtext:searchstring                                 scope:[[self.searchdisplaycontroller.searchbar scopebuttontitles]                                       objectatindex:[self.searchdisplaycontroller.searchbar                                                      selectedscopebuttonindex]]]; 

   return yes;

- (bool)searchdisplaycontroller:(uisearchdisplaycontroller *)controller  shouldreloadtableforsearchscope:(nsinteger)searchoption {

   [self filtercontentforsearchtext:[self.searchdisplaycontroller.searchbar text]                                 scope:[[self.searchdisplaycontroller.searchbar scopebuttontitles]                                       objectatindex:searchoption]]; 

   return yes;

}


运行工程,当你在搜索栏中点击及输入文本时,如下图所示:

 

iOS应用中UISearchDisplayController搜索效果的用法

 


uisearchdisplaycontroller 点击搜索出现黑条问题解决方案
如果点击按钮启动 presentviewcontroller 的时候出现下图效果:

iOS应用中UISearchDisplayController搜索效果的用法

比如说我这里现在代码式这样写的:

复制代码 代码如下:

addfriendviewcontroller *addfriendvc = [[addfriendviewcontroller alloc] init]; 
   uinavigationcontroller *nav =[[uinavigationcontroller alloc] initwithrootviewcontroller:addfriendvc]; 
   [self presentviewcontroller:nav animated:yes completion:nil]; 
   [addfriendvc release]; 
   [nav release]; 


发现问题所在 uinavigationcontroller 的背景颜色是黑色的;
 
为了解决tableview点击搜索出现的黑条:

 

代码:

复制代码 代码如下:

addfriendviewcontroller *addfriendvc = [[addfriendviewcontroller alloc] init]; 
    uinavigationcontroller *nav =[[uinavigationcontroller alloc] initwithrootviewcontroller:addfriendvc]; 
    [nav.view setbackgroundcolor:uicolorfromrgb(0xc6c6cb)]; 
    [self presentviewcontroller:nav animated:yes completion:nil]; 
    [addfriendvc release]; 
    [nav release]; 


改变了nav的背景色:

复制代码 代码如下:

[nav.view setbackgroundcolor:uicolorfromrgb(0xc6c6cb)];


效果:

 

iOS应用中UISearchDisplayController搜索效果的用法

延伸 · 阅读

精彩推荐
  • IOSIOS 屏幕适配方案实现缩放window的示例代码

    IOS 屏幕适配方案实现缩放window的示例代码

    这篇文章主要介绍了IOS 屏幕适配方案实现缩放window的示例代码,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要...

    xiari5772021-06-01
  • IOSiOS中tableview 两级cell的展开与收回的示例代码

    iOS中tableview 两级cell的展开与收回的示例代码

    本篇文章主要介绍了iOS中tableview 两级cell的展开与收回的示例代码,小编觉得挺不错的,现在分享给大家,也给大家做个参考。一起跟随小编过来看看吧...

    J_Kang3862021-04-22
  • IOSiOS布局渲染之UIView方法的调用时机详解

    iOS布局渲染之UIView方法的调用时机详解

    在你刚开始开发 iOS 应用时,最难避免或者是调试的就是和布局相关的问题,下面这篇文章主要给大家介绍了关于iOS布局渲染之UIView方法调用时机的相关资料...

    windtersharp7642021-05-04
  • IOS关于iOS自适应cell行高的那些事儿

    关于iOS自适应cell行高的那些事儿

    这篇文章主要给大家介绍了关于iOS自适应cell行高的那些事儿,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的...

    daisy6092021-05-17
  • IOS解析iOS开发中的FirstResponder第一响应对象

    解析iOS开发中的FirstResponder第一响应对象

    这篇文章主要介绍了解析iOS开发中的FirstResponder第一响应对象,包括View的FirstResponder的释放问题,需要的朋友可以参考下...

    一片枫叶4662020-12-25
  • IOSIOS开发之字典转字符串的实例详解

    IOS开发之字典转字符串的实例详解

    这篇文章主要介绍了IOS开发之字典转字符串的实例详解的相关资料,希望通过本文能帮助到大家,让大家掌握这样的方法,需要的朋友可以参考下...

    苦练内功5832021-04-01
  • IOSiOS通过逆向理解Block的内存模型

    iOS通过逆向理解Block的内存模型

    自从对 iOS 的逆向初窥门径后,我也经常通过它来分析一些比较大的应用,参考一下这些应用中某些功能的实现。这个探索的过程乐趣多多,不仅能满足自...

    Swiftyper12832021-03-03
  • IOSiOS 雷达效果实例详解

    iOS 雷达效果实例详解

    这篇文章主要介绍了iOS 雷达效果实例详解的相关资料,需要的朋友可以参考下...

    SimpleWorld11022021-01-28