gpt4 book ai didi

iOS 13 UISearchBar 外观和行为

转载 作者:行者123 更新时间:2023-12-03 01:44:52 25 4
gpt4 key购买 nike

我的 UISearchBar 设置如下:

searchController.searchResultsUpdater = self
searchController.obscuresBackgroundDuringPresentation = false // Allow user to tap on results
searchController.searchBar.placeholder = "Search patients" // Placeholder
searchController.searchBar.barStyle = .blackOpaque
searchController.searchBar.tintColor = colors.text // Cancel button tint

navigationItem.searchController = searchController // Set the searchController
navigationItem.hidesSearchBarWhenScrolling = true // Auto-hide search when user scrolls

这是它在 iOS 12 上的样子:iOS 12 appearance与 iOS 13:enter image description hereiOS 13 发生了什么变化?我尝试过不同的 barStyles,并将 .isTranslucent 设置为 false - 两者都没有效果。明/暗模式也不会改变任何东西。

另一个变化是隐藏搜索栏 - 在 iOS 12 上,如果我向上滚动一点,搜索栏就会隐藏(无论表格是否填充)。在 iOS 13 中,一旦搜索栏出现(即用户向下滑动),它就无法再次隐藏。有人知道这个问题的解决办法吗?

最佳答案

我也遇到了和你类似的问题。我不知道为什么在当前的 iOS 13 中会发生这种情况,而在旧版本中却可以正常工作。但我通过将此功能添加到您的搜索栏找到了解决方案。

if #available(iOS 13.0, *) {
searchBar.searchTextField.backgroundColor = UIColor.white
}

修复后预览:

before fixing after fixing

关于iOS 13 UISearchBar 外观和行为,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57927576/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com