ios-平滑处理导航栏的显示和隐藏.zip

时间:2022-07-31 12:38:38
【文件属性】:
文件名称:ios-平滑处理导航栏的显示和隐藏.zip
文件大小:3.81MB
文件格式:ZIP
更新时间:2022-07-31 12:38:38
导航 平滑处理导航栏的显示和隐藏。 GitHub:https://github.com/EnderTan/ETNavBarTransparentDemo 使用方法: 1、把ET_NavBarTransparent.swift导入到项目中 2、在需要的地方修改导航栏透明度和navigationItem的颜色: override func viewDidLoad() { super.viewDidLoad() self.navBarBgAlpha = 0 self.navBarTintColor = .white } func scrollViewDidScroll(_ scrollView: UIScrollView) { if scrollView.contentOffset.y > 100 { navBarBgAlpha = 1 navBarTintColor = UIColor.gray }else{ navBarBgAlpha = 0 navBarTintColor = UIColor.white } } 相关文章 http://www.jianshu.com/p/454b06590cf1:

网友评论