如何将基于故事板的标题和自定义表格单元格添加到“搜索栏和搜索显示控制器”

时间:2014-07-18 18:16:29

标签: ios uitableview uinavigationcontroller storyboard uisearchbar

PRESENTATION

我的是一个简单的项目:它包含一个NavigationController,ViewController和一个“搜索栏和搜索显示控制器”

我的.h文件是

#import <UIKit/UIKit.h>

@interface ViewController : UIViewController <UISearchDisplayDelegate, UITableViewDataSource, UITableViewDelegate>

@end

和我的.m文件是

#import "ViewController.h"

@interface ViewController ()
@property(nonatomic,strong)NSMutableArray *data;
@end

@implementation ViewController

- (void)viewDidLoad
{
    [super viewDidLoad];
    // Do any additional setup after loading the view, typically from a nib.
    self.searchDisplayController.displaysSearchBarInNavigationBar = YES;
    self.data=[[NSMutableArray alloc]init];
}

- (void)didReceiveMemoryWarning
{
    [super didReceiveMemoryWarning];
    // Dispose of any resources that can be recreated.
}


#pragma mark - data source

- (NSInteger)numberOfSectionsInTableView:(UITableView *)aTableView {
    // Return the number of sections.
    return 1;
}

- (NSInteger)tableView:(UITableView *)aTableView numberOfRowsInSection:(NSInteger)section {
    // Return the number of rows in the section.
    return [_data count];
}

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

    static NSString *CellIdentifier = @"CellIdentifier";

    // Dequeue or create a cell of the appropriate type.
    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
    if (cell == nil) {
        cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier] ;
        cell.accessoryType = UITableViewCellAccessoryNone;
    }

    // Configure the cell.
    cell.textLabel.text = [NSString stringWithFormat:@"Row %d", indexPath.row];
    cell.textLabel.text = [NSString stringWithFormat:@"Row %d: %@", indexPath.row, [_data objectAtIndex:indexPath.row]];
    return cell;
}

#pragma mark - delegate

- (BOOL)searchDisplayController:(UISearchDisplayController *)controller shouldReloadTableForSearchString:(NSString *)searchString
{
    [NSTimer scheduledTimerWithTimeInterval:2 target:self selector:@selector(mockSearch:) userInfo:searchString repeats:NO];
    return NO;
}

- (void)mockSearch:(NSTimer*)timer
{
    [_data removeAllObjects];
    int count = 1 + random() % 20;
    for (int i = 0; i < count; i++) {
        [_data addObject:timer.userInfo];
    }
    [self.searchDisplayController.searchResultsTableView reloadData];
}

@end

这就是整个计划。它有什么作用?用户进行搜索,数据显示在TableView中(类似于谷歌搜索)。

问题

  • 我需要为我的表使用CustomTableViewCell。我需要从故事板构建TableViewCell(易于可视化)。我被故事板部分困住了。如何在没有TableView的情况下将TableViewCell放置在故事板上?我有一个想法,我尝试过,但它没有用。这就是我做的。我在故事板中放置了一个“永远不会被使用”的TableViewController,其唯一目的是保存我的CustomTableViewCell。然后在代码I中继承TableViewCell并使用IBOutlet将故事板TableViewCell的子视图链接到我的CustomTableViewCell。然后我将我的单元格用作CustomTableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier forIndexPath:indexPath];。这没用。 tableView保持空白。我对失败的猜测是CustomTableViewCell不属于正在出列的tableView

  • 我需要UISearchBar始终保持在NavigationBar中。但到目前为止self.searchDisplayController.displaysSearchBarInNavigationBar = YES;并没有这样做。当我第一次启动应用程序时,searchBar位于NavigationBar中。但是一旦我点击它,它就会在我的场景/屏幕中间自动拍摄,并且永远不会离开。

  • 我需要在TableView中添加一个Header。我想到的方法与CustomTableViewCell一样,但是有一个UIView父类。但同样,CustomTableViewCell部分失败了。

PLEA

感谢您提供给我的任何帮助。

更新

我要做的就是允许我的用户启动服务器端搜索并在tableView中查看结果。这是一个基本的东西,我形象很多人在这里做了很多次。作为iOS的新手,我被困住了。但是在这一点上,我已经发布了我的整个项目(任何人都可以重建它),我已经详细解释了我试图解决问题的所有方法。因此,如果有人有一个示例项目,他们不介意分享,这将非常有用。或者,如果你知道一个git项目,请给它一个链接。感谢。

1 个答案:

答案 0 :(得分:1)

如果要在IB中创建独立视图(不在视图控制器中),则应在xib文件中进行,而不是在故事板中进行。您可以根据需要在应用程序中包含尽可能多的storyboard和xib文件;它们可以自由混合。要在xib文件中创建新单元格,只需转到新文件 - &gt;用户界面 - &gt;清空然后在UITableViewCell中拖动。添加所需的任何子视图,并在表视图控制器(或任何类是您的表视图数据源)中,使用registerNib:forIdentifier注册xib文件:(通常,您在viewDidLoad中执行此操作)。