- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我不擅长 iOS 开发,并且遇到了一个简单的问题。
我正在尝试创建一个 UISearchController,它在首次启动或 UISearchBar 为空时在结果 tableView 的 backgroundView 中有一条空消息(无论是退格,点击 x 清除字段,还是取消 UISearchBar) .
当 UISearchBar 第一次聚焦时,我已经完成了添加空消息,但是在搜索发生后,当我取消搜索并清空 UISearchBar 后,旧的搜索结果仍然在结果 TableView 中。
我认为一直都是这样,但是我之前没有看到旧的结果,而现在我设置了 searchController.searchResultsController?.view.isHidden = false
能够在 Controller 首次启动时看到背景。
我已经进行了广泛的搜索,只是无法弄清楚如何清除旧结果。
我的整个结果 TableViewController 代码:
import UIKit
import MapKit
import Mapbox
class LocationSearchTableViewController: UITableViewController {
var matchingItems: [MKMapItem] = []
var mapView: MGLMapView? = nil
// This somehow connects and pleases the delegate
var handleMapSearchDelegate: HandleMapSearch? = nil
// Address formatting, not entirely sure what this is doing
func parseAddress(selectedItem: MKPlacemark) -> String {
// put a space between "4" and "Melrose Place"
let firstSpace = (selectedItem.subThoroughfare != nil && selectedItem.thoroughfare != nil) ? " " : ""
// put a comma between street and city/state
let comma = (selectedItem.subThoroughfare != nil || selectedItem.thoroughfare != nil) && (selectedItem.subAdministrativeArea != nil || selectedItem.administrativeArea != nil) ? ", " : ""
// put a space between "Washington" and "DC"
let secondSpace = (selectedItem.subAdministrativeArea != nil && selectedItem.administrativeArea != nil) ? " " : ""
let addressLine = String(
format:"%@%@%@%@%@%@%@",
// street number
selectedItem.subThoroughfare ?? "",
firstSpace,
// street name
selectedItem.thoroughfare ?? "",
comma,
// city
selectedItem.locality ?? "",
secondSpace,
// state
selectedItem.administrativeArea ?? ""
)
return addressLine
}
}
// Extension with UISearchResultsUpdating delegate protocols
extension LocationSearchTableViewController: UISearchResultsUpdating {
func updateSearchResults(for searchController: UISearchController) {
// This unhides the results view so it's visible when the field is focused
searchController.searchResultsController?.view.isHidden = false
// Get searchbar text and make query
guard let _ = mapView,
let searchBarText = searchController.searchBar.text else { return }
let request = MKLocalSearchRequest()
request.naturalLanguageQuery = searchBarText
let search = MKLocalSearch(request: request)
search.start { response, _ in
guard let response = response else {
return
}
self.matchingItems = response.mapItems
self.tableView.reloadData()
}
if searchBarText == "" {
// searchResults.removeAll()
tableView.reloadData()
}
}
}
// Extension with all UITableViewDataSource methods grouped together
extension LocationSearchTableViewController {
// Create rows based on number of returning items
override func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
if matchingItems.count == 0 {
setEmptyMessage()
} else {
restore()
}
return matchingItems.count
}
// Populate cells
override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCell(withIdentifier: "cell")!
let selectedItem = matchingItems[indexPath.row].placemark
cell.textLabel?.text = selectedItem.name
cell.detailTextLabel?.text = parseAddress(selectedItem: selectedItem)
return cell
}
}
// Groups UITableViewDelegate methods together
extension LocationSearchTableViewController {
// Function that fires on tapping a row
override func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
// Assign placemark value (coordinates)
let selectedItem = matchingItems[indexPath.row].placemark
// Delegate function that passes placemark
handleMapSearchDelegate?.dropPin(placemark: selectedItem)
// Dismiss searchController
dismiss(animated: true, completion: nil)
}
}
extension LocationSearchTableViewController {
func setEmptyMessage() {
let rect = CGRect(origin: CGPoint(x: 0,y :0), size: CGSize(width: self.view.bounds.size.width, height: self.view.bounds.size.height))
let messageLabel = UILabel(frame: rect)
messageLabel.text = "Empty"
messageLabel.textColor = .black
messageLabel.numberOfLines = 0
messageLabel.textAlignment = .center
messageLabel.font = UIFont(name: "TrebuchetMS", size: 15)
messageLabel.sizeToFit()
self.tableView.backgroundView = messageLabel
// self.tableView.backgroundView?.isHidden = false
self.tableView.backgroundColor = Colors.black1
self.tableView.separatorStyle = .none
}
func restore() {
self.tableView.backgroundView = nil
self.tableView.separatorStyle = .singleLine
}
}
func searchBarCancelButtonClicked(_ searchBar: UISearchBar) {
if let navigationController = navigationController { // this unwraps navigation controller
navigationController.setNavigationBarHidden(true, animated: true)
UIView.animate(withDuration: 1) {
self.placeholderView.alpha = 0
}
}
}
最佳答案
这是清除 dataArray .. 并调用 reloadData()
所需的方法在您的 tableView
上
func searchBar(_ searchBar: UISearchBar, textDidChange searchText: String) {
if searchText.isEmpty {
searchResults.removeAll()
tableView.reloadData()
}
}
关于ios - UISearchController 结果 TableViewController 在 UISearchBar 为空时不清除结果,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61579878/
这个问题本质上是,UISearchBar在激活时与状态栏重叠。我知道已经有很多类似的问题发布了,我已经尝试了所有方法,但仍然无法解决。 当屏幕初始化时,搜索栏似乎位于正确的位置。当我向下滚动屏幕时,您
我尝试在我的应用程序中实现 iOS 11 中的新搜索栏,但出于某种原因,我无法让搜索栏颜色随导航栏一起更改。在切换到新样式之前,我在 AppDelagate 中使用 UISearchBar.appea
我正在努力做到这一点: Consider a table view with Search Bar on its header.Table view gets refreshed whenever s
documentation表示 UISearchBar我们可以在 tvOS 中使用它(Apple 当然在他们的搜索 View 中使用它),但我在对象库中找不到它。 其他人有同样的问题吗?我没有看到一个
当我在 UISearchBar 上搜索时,我的普通 tableView 已设置为 - (UITableViewCell *)tableView:(UITableView *)tableView cel
这里是我在view controller.h中的代码 #import "AppDelegate.h" @interface SearchRsultsFanSideViewController : UI
我在一个应用程序工作,我今天在 iOS 7.1 上进行了测试。到目前为止,我的搜索栏是正常的: 但现在我有这个问题: 出现一个灰色 View ,我不知道如何删除它,因为我的代码中没有这个 View 。
我正在更新适用于 iOS 7 的应用程序,而我的一项功能(允许在搜索栏中没有文本的情况下激活搜索栏搜索按钮)停止工作。我使用了以下代码。关于如何让它再次工作有什么建议吗?提前致谢。 UITextFie
我有一个带有 UISearchBar(和 SearchDisplayController)的 UIViewController 以及一个 UITableView。当导航到这个 View Control
我有一个我似乎无法克服的小情况。 我有一个 UITableView,它的顶部嵌入了一个 UISearchBar。 TableView 由 NSFetchedResultsController 和 Co
我在 TableView 顶部使用带有 UISearchBar 的 UITableView,对我来说,一切都工作正常,只有一个问题,比如如果我搜索一个字母,uitableview 中的搜索结果被过滤,
表格标题中有一个搜索栏。当用户在 iOS 7 上快速点击它两次时,它就会消失。有人对我们做错了什么有什么建议吗? 最佳答案 经过大量的试验和错误,我发现当searchDisplayController
我想更改 UISearchBar。文本字段的高度和宽度。我的问题是如何更改 iphone 中 UISearchBar 中的 UiSearchbar 高度、宽度、颜色 和 Uitextfield 高度?
这两张图应该可以说明了吧。第一个正常显示我的 UITableView。第二个显示当我触摸 UISearchBar 并且它获得焦点时。为什么单元格标题和搜索栏之间有间隙?有人知道如何解决这个问题吗? i
我有一个 UISearchBar添加到 UITableView 的顶部. // init search bar self.resultSearchController = ({
在 iOS 5 上使用带有 showCancelButton=YES 的 UISearchBar。希望在键盘下拉时取消按钮保持启用状态。使用以下代码似乎不起作用: for (id subView in
我有一个 UITableView,它的数据源和委托(delegate)不是由放置它的 View Controller 处理的,而是由另一个名为 AbstractInviteFriendsDataSou
我研究过这个问题。看起来这是一个常见问题,但我尝试过的任何方法都没有奏效。我对 iPhone 应用程序开发和 objective-c 非常陌生。此时我想做的就是在搜索栏字段中输入一个字符串,并在点击键
我有一个使用 UISearchBar 的搜索功能,该功能是即时发生的,所以我认为用“完成”替换键盘上的“搜索”按钮会更明显。 有办法做到这一点吗? 谢谢 最佳答案 您可以更改 UISearchBar
有没有人设法为 UISearchBar 的范围栏部分着色,它有一个 tintColor 属性,但设置它不会影响附加的范围栏 UISegmentedControl。我在酒吧上有一个 Handlebars
我是一名优秀的程序员,十分优秀!