iOS学习笔记12-UISearchBar

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了iOS学习笔记12-UISearchBar相关的知识,希望对你有一定的参考价值。

首先做一个假数据

    data=[NSArray arrayWithObjects:@"w",@"wwe",@"wwweer",@"Eee",@"fff",@"fffq", nil];

 

定义一个bool 值是isFind 初始值设为0

    isfind=NO;即不是搜索状态

 

 

 设置搜索状态和非搜索状态的不同的容行数

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section{

    if (isfind==NO) {

        return data.count;

    }

    else

    {

        return finddata.count;

    }

}

 

 

设置cell

-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{

    static NSString *[email protected]"cellid";

    UITableViewCell *cell=[tableView dequeueReusableCellWithIdentifier:cellid];

    if (cell==nil) {

        cell=[[UITableViewCell alloc]initWithStyle: UITableViewCellStyleDefault reuseIdentifier:cellid];

    }

    if (isfind==YES) {

        cell.textLabel.text=[finddata objectAtIndex:indexPath.row];

    }

    return cell;

}

 

以上是关于iOS学习笔记12-UISearchBar的主要内容,如果未能解决你的问题,请参考以下文章

C++学习笔记-1:指针和引用

UISearchBar

iOS - 未解决的错误导致崩溃:悬挂对无效对象的引用

C++基础知识的学习笔记

垃圾和悬挂参考有什么区别?

无用单元和悬挂引用