使用UINavigationController时,UINavigationBar的最佳方法是什么才能像UIViewController中的其他元素一样在推送或滑动手势上回滚?
答案 0 :(得分:1)
UINavigationController子类,支持带隐藏或显示的pop-interactive UINavigationbar。
请参阅此资料库:KDInteractiveNavigationController
从iOS 8及更高版本开始,要滚动UINavigationBar,请使用以下命令:
<强>夫特:强>
class YourViewController: UITableViewController {
override func viewDidAppear(animated: Bool) {
super.viewDidAppear(animated)
navigationController?.hidesBarsOnSwipe = true
}
}
有关详细信息click here