- 在创建了一个在
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 上隐藏键盘时得到的结果:
底部行被剪切(滚动条不再启用向下滚动),右侧部分索引器未正确对齐...如何在 iOS8 中进行此操作?
Best Answer-推荐答案 strong>
我没有看到为表格 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/
|