• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

ios - 在 didHideSearchResultsTableView 上隐藏键盘会弄乱搜索 View

[复制链接]
菜鸟教程小白 发表于 2022-12-12 12:04:41 | 显示全部楼层 |阅读模式 打印 上一主题 下一主题

  • 在创建了一个在 iOS7 上运行良好的搜索显示 Controller 之后。
  • 我在 iOS8 的搜索 View 中无法正确 hide keyboard
  • 结果在底部被截断,字母部分索引器(右侧)与底部垂直对齐 (帖子末尾的屏幕截图)。

基本设置代码:

@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)searchDisplayControllerUISearchDisplayController *)controller didHideSearchResultsTableViewUITableView *)tableView {
    [[NSNotificationCenter defaultCenter] removeObserver:self name:UIKeyboardWillHideNotification object:nil];
}

- (void)searchDisplayController: (UISearchDisplayController *)controller
 willShowSearchResultsTableView: (UITableView *)searchTableView {
    
    [[NSNotificationCenter defaultCenter] addObserver:self selectorselector(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 中进行此操作?



Best Answer-推荐答案


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

UISearchController 真正的优点在于它让您有机会提供一个单独的 View Controller 来管理结果显示。第一个解耦您的类并帮助清理在单个 Controller 中使用单个 UITableView 或两个 UITableView 创建的困惑。所以你显然陷入了这种困惑,所以我建议更多地研究 UISearchController 并创建一个单独的类来显示结果。这样您就不必担心 contentInsets 等。 不要像使用 UISearchDisplayController 一样使用 UISearchController。

关于ios - 在 didHideSearchResultsTableView 上隐藏键盘会弄乱搜索 View ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26254175/

回复

使用道具 举报

懒得打字嘛,点击右侧快捷回复 【右侧内容,后台自定义】
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

关注0

粉丝2

帖子830918

发布主题
阅读排行 更多
广告位

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap