我想在向下滚动TableView的同时平稳地更改此NavigationBar中的UINavigationBar和UIBarButtonItem的背景颜色。我在AirBNB应用程序中看到了这一点,却不知道该如何做。感谢您的帮助
答案 0 :(得分:0)
UIScrollViewDelegate
并确保将tableView / CollectionView委托设置为当前的ViewController。scrollViewDidScroll(:)
方法。摘要
Class UIViewController: UIScrollViewDelegate {
func scrollViewDidScroll(_ scrollView: UIScrollView) {
let offset = scrollView.contentOffset.y
if offset > 1 { // Or choose any desired offset
// TODO:- Change your color for offset greater than 1
}else {
// TODO: - Change your nav bar for offset less than 1
}
}
}