单击搜索栏时,如何在SearchDisplayViewController中自动显示搜索结果(tableview)?

时间:2013-11-06 13:26:00

标签: ios iphone objective-c uisearchdisplaycontroller

我有一个SearchDisplayViewController,点击tableview后会显示搜索结果searchbar并输入一些字符。我想知道在你输入任何字符之前是否可以使用searchresult tableview?我将在下面发布一些相关的代码。

-(NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section 
{
    return 1;
}


-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath 
{
    static NSString *cellIdentifier = @"cell";
    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:cellIdentifier];
    if (!cell) 
    {
        cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:cellIdentifier] autorelease];
    }

    return cell;
}

0 个答案:

没有答案