UISearchBar在iOS 11和iOS 10及更低版本中表現不同。iOS 11導航欄中的UISearchBar
- 大小已更改
- 推動控制的另一觀點是缺少
我處理與此代碼以某種方式「解決」大小時的淡出動畫:
if #available(iOS 11.0, *) {
searchBar.heightAnchor.constraint(equalToConstant: 44).isActive = true
}
但我無法修復動畫。任何想法,除了只是手動推動搜索欄的動畫?
UIView.animate(withDuration: 0.3, animations: { [weak self] in
guard let strongSelf = self else { return }
strongSelf.searchBar.alpha = 0.0
})
看到一個視頻的破碎的動畫效果here。
我有同樣的問題,你是如何解決它的? – sancho