最近想记录一下想到的一些虽然毫无技术含量但也值得注意的地方,想到了就会记录下来
想到一个常用的,就是二级页面一般都回去隐藏底部UITabBar,可能有的小伙伴都是在需要的当前页面push的时候去实现的,例如:
vc.hidesBottomBarWhenPushed = true;
这样当然是没问题,只是需要每次都写一次,虽然也不算麻烦,这里有个小技巧,就是在自己的UINavigationController里重写pushViewController方法,通过判断子控制器的数量去实现是否隐藏
override func pushViewController(_ viewController: UIViewController, animated: Bool) {
if children.count > 0 {
viewController.hidesBottomBarWhenPushed = true
}
super.pushViewController(viewController, animated: true)
}