菜鸟教程小白 发表于 2022-12-12 12:04:41

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


                                            <p><ul>
<li>在创建了一个在 <code>iOS7</code> 上运行良好的搜索显示 Controller 之后。</li>
<li>我在 <code>iOS8</code> 的搜索 View 中无法正确 <code>hide</code> <code>keyboard</code>。</li>
<li>结果在底部被截断,字母部分索引器(右侧)与底部垂直对齐
(帖子末尾的屏幕截图)。</li>
</ul>
<h3>基本设置代码:</h3>
<pre><code>@interface MyViewController : UIViewController&lt;UITableViewDelegate, UITableViewDataSource, UISearchBarDelegate, NSFetchedResultsControllerDelegate, ... &gt;

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

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

-(UITableView*) tableView
{
    if (!_tableView){
      _tableView = [ 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 = [ 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&#39;t overlap the status bar
    if (SYSTEM_VERSION_GREATER_THAN_OR_EQUAL_TO(@&#34;7.0&#34;)) {
      self.edgesForExtendedLayout = UIRectEdgeNone;
    }
   
    //Add the subviews to the mainView
    ;
    ;

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

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

[self.view addConstraints:[NSLayoutConstraint
                           constraintsWithVisualFormat: @&#34;H:||&#34;
                           options:0
                           metrics:nil
                           views:viewsDictionary]];

[self.view addConstraints:[NSLayoutConstraint
                           constraintsWithVisualFormat:@&#34;V:||&#34;
                           options:0
                           metrics:nil
                           views:viewsDictionary]];
}
</code></pre>
<p>现在到有趣的部分,我认为它在 iOS7 和 iOS8 上的工作方式不同,并导致您在下面的屏幕截图中看到问题:</p>
<pre><code>- (void)searchDisplayController:(UISearchDisplayController *)controller didHideSearchResultsTableView:(UITableView *)tableView {
    [ removeObserver:self name:UIKeyboardWillHideNotification object:nil];
}

- (void)searchDisplayController: (UISearchDisplayController *)controller
willShowSearchResultsTableView: (UITableView *)searchTableView {
   
    [ addObserver:self selector:@selector(keyboardWillHide) name:UIKeyboardWillHideNotification object:nil];
}
- (void) keyboardWillHide {
    UITableView *tableView = self.searchDisplayController.searchResultsTableView;
    ;
    ;
}
</code></pre>
<p>选择器似乎在 iOS7 中完成了这项工作,但这是我在 iOS8 上隐藏键盘时得到的结果:</p>
<p> <img src="/image/FdCgZm.png" alt="enter image description here"/> </p>
<p>底部行被剪切(滚动条不再启用向下滚动),右侧部分索引器未正确对齐...如何在 iOS8 中进行此操作?</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>我没有看到为表格 View 添加布局约束的代码。也许他们在 -<code>(void) initWithTableViewStyle: (int) tableViewStyle</code> 方法中?确保它们设置正确,因为看起来您使用相同的 tableView 来显示所有数据和搜索结果。</p>

<p>UISearchController 真正的优点在于它让您有机会提供一个单独的 ViewController 来管理结果显示。第一个解耦您的类并帮助清理在单个 Controller 中使用单个 UITableView 或两个 UITableView 创建的困惑。所以你显然陷入了这种困惑,所以我建议更多地研究 UISearchController 并创建一个单独的类来显示结果。这样您就不必担心 contentInsets 等。
不要像使用 UISearchDisplayController 一样使用 UISearchController。</p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 在 didHideSearchResultsTableView 上隐藏键盘会弄乱搜索 View ,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/26254175/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/26254175/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 在 didHideSearchResultsTableView 上隐藏键盘会弄乱搜索 View