在didHideSearchResultsTableView上隐藏键盘会弄乱搜索视图

时间:2014-10-08 10:00:51

标签: ios uitableview ios8 uisearchbar uisearchdisplaycontroller

  • 创建一个在iOS7上运行良好的搜索显示控制器。
  • 我在hide的搜索视图上遇到keyboard iOS8时遇到了问题。
  • 结果在底部被删除,字母部分索引器(在右侧)垂直对齐到底部 (帖子末尾的屏幕截图)。

基本设置代码:

@interface MyViewController : UIViewController<UITableViewDelegate, UITableViewDataSource, UISearchBarDelegate, NSFetchedResultsControllerDelegate, ... >

@implementation MyViewController 
@property (nonatomic, retain) UISearchDisplayController *mySearchDisplayController;

- (void)loadView
{
    [super loadView];
    self.mySearchDisplayController = [[UISearchDisplayController alloc] initWithSearchBar:self.searchBar contentsController:self];
...
}

-(UITableView*) tableView
{
    if (!_tableView){
        _tableView = [[UITableView alloc] initWithFrame:CGRectMake(0,0,0,0)
                                                  style:self.tableViewStyle];
        _tableView.translatesAutoresizingMaskIntoConstraints=NO;
        _tableView.delegate = self;
        _tableView.dataSource=self;
    }
    return _tableView;
}

-(UISearchBar*) searchBar
{
    if(!_searchBar){

        _searchBar = [[UISearchBar alloc] initWithFrame:CGRectMake(0,44,144,0)];
        _searchBar.autocorrectionType = UITextAutocorrectionTypeNo;
        _searchBar.translatesAutoresizingMaskIntoConstraints=NO;
        _searchBar.translucent = NO;
        _searchBar.delegate = self;
        _searchBar.autoresizingMask = (UIViewAutoresizingFlexibleWidth);
        _searchBar.autocorrectionType = UITextAutocorrectionTypeNo;        
    }
    return _searchBar;
}


-(void) initWithTableViewStyle: (int) tableViewStyle
{
    //Set the UITableViewStyle
    self.tableViewStyle = tableViewStyle;

    //Be sure the searchBar won't overlap the status bar
    if (SYSTEM_VERSION_GREATER_THAN_OR_EQUAL_TO(@"7.0")) {
        self.edgesForExtendedLayout = UIRectEdgeNone;
    }

    //Add the subviews to the mainView
    [self.view addSubview:self.searchBar];
    [self.view addSubview:self.tableView];

//Create the views dictionaryy
NSDictionary *viewsDictionary = @{@"searchBar":self.searchBar,
                                  @"tableView": self.tableView};

//Create the constraints using the visual language format
[self.view addConstraints:[NSLayoutConstraint
                           constraintsWithVisualFormat: @"H:|[searchBar]|"
                           options:0
                           metrics:nil
                           views:viewsDictionary]];

[self.view addConstraints:[NSLayoutConstraint
                           constraintsWithVisualFormat: @"H:|[tableView]|"
                           options:0
                           metrics:nil
                           views:viewsDictionary]];

[self.view addConstraints:[NSLayoutConstraint
                           constraintsWithVisualFormat:@"V:|[searchBar(==44)][tableView]|"
                           options:0
                           metrics:nil
                           views:viewsDictionary]];
}

现在我认为有趣的部分在iOS7和iOS8上的工作方式不同,并导致您在下面的屏幕截图中看到的问题:

- (void)searchDisplayController:(UISearchDisplayController *)controller didHideSearchResultsTableView:(UITableView *)tableView {
    [[NSNotificationCenter defaultCenter] removeObserver:self name:UIKeyboardWillHideNotification object:nil];
}

- (void)searchDisplayController: (UISearchDisplayController *)controller
 willShowSearchResultsTableView: (UITableView *)searchTableView {

    [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(keyboardWillHide) name:UIKeyboardWillHideNotification object:nil];
}
- (void) keyboardWillHide {
    UITableView *tableView = self.searchDisplayController.searchResultsTableView;
    [tableView setContentInset:UIEdgeInsetsZero];
    [tableView setScrollIndicatorInsets:UIEdgeInsetsZero];
}

选择器似乎在iOS7中完成了工作,但这是我在iOS8上隐藏键盘时得到的结果:

enter image description here

底部行被剪切(滚动条不再向下滚动),右侧部分索引器未正确对齐...如何在iOS8中使其工作?

1 个答案:

答案 0 :(得分:2)

我没有看到代码为表视图添加布局约束。也许他们在 - (void) initWithTableViewStyle: (int) tableViewStyle方法?确保它们设置正确,因为看起来您使用相同的tableView来显示所有数据和搜索结果。

UISearchController的真正优点在于它让您有机会提供单独的视图控制器来管理结果显示。哪个1st解耦你的类,并帮助清理使用单个UITableView或单个控制器中的两个UITableView创建的混乱。所以你显然是在这个混乱中所以我建议潜入UISearchController并为结果显示创建一个单独的类。这样您就不必担心contentInsets等等。 不要像使用UISearchDisplayController一样使用UISearchController。