[iOS 问题集锦] UISearchController.searchBar becomeFirstResponder不生效

问题描述

UISearchController是iOS提供的最新的方便实现搜索框和搜索结果页的组件,但是大家往往需要在进入这个页面时候就让搜索框获得焦点并弹出键盘,提供给用户更好的体验

解决方案

各种google stackoverflow之后按照以下代码达到了想要的效果(我是将searchbar放在navigationBar上的):

-(void)viewDidAppear:(BOOL)animated {
    [super viewDidAppear: animated];
    self.searchController.active = true;
}

#pragma mark UISearchControllerDelegate
- (void)didPresentSearchController:(UISearchController *)searchController {
    [self.searchController.searchBar becomeFirstResponder]
}

查看文档,大家很容易明白这样做的原理

需要注意的是:一定是在viewDidAppear中active searchController

测试iOS 8上没有问题,但是iOS 9无法弹出键盘,又是一番查找,将代码修改如下解决问题:

-(void)viewDidAppear:(BOOL)animated {
    [super viewDidAppear: animated];
    self.searchController.active = true;
}

#pragma mark UISearchControllerDelegate
- (void)didPresentSearchController:(UISearchController *)searchController {
    [UIView animateWithDuration:0.1 animations:^{} completion:^(BOOL finished) {
        [self.searchController.searchBar becomeFirstResponder];
    }];
}

分析原因,didPresentSearchController应该是在searchController被present出来完成后调用,但是事实估计是还没有结束就调用了,所以里面执行becomeFirstResponder没有生效,延时解决问题(并不一定是根本原因)

附效果图

[iOS 问题集锦] UISearchController.searchBar becomeFirstResponder不生效_第1张图片
Paste_Image.png

你可能感兴趣的:([iOS 问题集锦] UISearchController.searchBar becomeFirstResponder不生效)