- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个 UISearchBar
正在努力动态显示列表中的匹配结果,但在试图停止 searchResultsTableView
时遇到了噩梦从模糊结果UIView
,当结果被点击时,它从右边开始动画。
洋红色 View (包括其阴影 subview )和纯黑色 View 应位于列表上方。
我试过了……
self.searchDisplayController.searchResultsTableView.layer.zPosition = 0;
recipeMeasuresView.layer.zPosition = 1;
recipeListView.layer.zPosition = 2;
…但是它弄乱了附加的手势,仍然没有以正确的顺序显示 View 。我也试过了……
[self.view sendSubviewToBack:_searchBar];
[ingredientListView bringSubviewToFront:ingredientListView];
......仍然没有快乐。顺便说一句,我还添加了——除其他外——[_searchBar resignFirstResponder];
对我的
-(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
我是一个 objective-C 的新手所以所有帮助非常感激。
最佳答案
万一其他人遇到类似问题,问题似乎是由于 searchDisplayController
在堆栈顶部添加了自己的 View ,因此掩盖了添加的任何内容到 Storyboard。
因为 searchDisplayResultsTable
是由不同的 View Controller 添加的,所以没有办法向上或向下插入任何东西来改变顺序。
我使用的解决方案是以编程方式添加被隐藏的 View ,这意味着我可以根据发生的情况将它们作为 subview 添加到不同的父 View 。可能不是最好的解决方案,但它确实有效。
关于ios - 更改 searchResultsTableView 的 zPosition,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21411570/
我正在实现一个 UISearchDisplayController,我想在加载时用 tableView 的内容(未过滤)填充 searchResultsTableView - 在输入文本之前。 这在我
这个问题在这里已经有了答案: iOS search bar not showing results (3 个答案) 关闭 8 年前。 我有一个成功执行搜索的 uisearchbar。问题是 sear
当我点击这个按钮-[搜索]时,弹出窗口出现。 如果我写下搜索词并单击“搜索”按钮,数据将填充到 NSMutableArray 中。 此搜索表使用“自定义单元格”。 我无法将“自定义单元格”与 NSMu
我在 ViewController 中实现 SearchDisplayController。它工作正常,除了一件事:我正在控制 searchResultTableView 属性以调整显示结果的 tab
我想知道如何控制 UISearchDisplayController 使用的 TableView 。您无法覆盖 UISearchDisplayController 的 searchResultsTab
我目前正在使用 searchDisplayController与 UISearchBar尝试在我的 iPhone 应用程序中实现自动完成功能。 但是,当用户第一次按下 UISearchBar ,搜索
最初,我有一个主 TableView Controller ,其中包含使用 Storyboard布局的静态单元格的 TableView 。随后,我向这个 UITableViewController 添
我使用 TableView 和搜索显示 Controller 创建简单的 View Controller 。当我添加搜索显示 Controller 时,它为 searchResultsTableVie
我有一个 UISearchBar正在努力动态显示列表中的匹配结果,但在试图停止 searchResultsTableView 时遇到了噩梦从模糊结果UIView ,当结果被点击时,它从右边开始动画。
一切正常,但无法为 searchResultsTableView 的自定义单元格的 UILable 赋值。我为我的 TableView Controller 使用相同的自定义 UITableViewC
我在 UINavigationController 中有一个普通的 UITableViewController。前者包括连接到搜索显示 Controller 的搜索栏。我使用标准行为,即当用户输入任何
我有一个带有 searchDisplayController 的 UISearchbar,它通过 IB 拖到我的 tableview 中。我的搜索范围栏在不处于搜索模式时隐藏。当我开始搜索时,范围栏将
我有一个 UISearchDisplayController 正确连接到 IB 中自定义 UITableView 的 header 。但是,当我搜索任何内容时,searchResultsTableVi
我已经修改了Apple 示例iOS 项目的代码TableSearch为了通过解析其内容来使用它来搜索网络服务。在使用 SearchDisplayController 的 SearchBar 执行搜索时
我有一个包含 tableView 的 viewController;我在表格的标题中有一个 UIView,并将一个 searchDisplayController 以及一个分段控件拖到了 View 中
我正在使用基于本教程的 UISearchDisplayController: http://developer.apple.com/library/ios/#samplecode/TableSearc
以下问题仅发生在 iOS 7.0+ 设备上运行的 iOS 6.0/6.1 应用程序上。 所以我有一个 UISearchDisplayController搜索我们的 API 并返回数据。这一切都有效,一
我是一名优秀的程序员,十分优秀!