如何为UITableview中的每个部分创建不同的搜索字段?

时间:2015-08-10 05:32:11

标签: ios objective-c uitableview uisearchbar

假设我想为每个部分实现带有搜索字段的UITableview。如果我在第一部分中搜索,则结果行应仅在第一部分中更新。同样的方法,如果我在第二部分中搜索,第二部分结果行应该更新,等等其余部分。

我已经实现了每个部分搜索字段,但是当我重新加载部分或重新加载部分行时,它会重新加载部分。

1 个答案:

答案 0 :(得分:1)

我得到了解决方案。请找到下面的代码。因为我正在使用autolayout&我的视图控制器的故事板我必须把它作为iboutlet,现在我只有2个分区,所以我让它静态,你可以通过创建动态视图,如果你有动态的部分数量。

// define in your .h file and take layout for the views and make it saperate from your main view container (outside of main view controller).

@property(strong,nonatomic)IBOutlet UITextField * txtSearchSection1;
@property(strong,nonatomic)IBOutlet UITextField * txtSearchSection2;

@property (strong, nonatomic) IBOutlet UIView *viewSection1;
@property (strong, nonatomic) IBOutlet UIView *viewSection2;


// Implement in your .m file 
-(NSInteger)numberOfSectionsInTableView:(UITableView *)tableView{
    return 2;
}
-(CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section
{
    return 40.0f;
}
-(UIView*)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section
{
    if (section==1) {
        return _viewSection1;
    }else{
        return _viewSection2;
    }
}