如何使用 TableView Scroll 隐藏 UITableView Header 和 Navigation Bar?

How to use the TableView Scroll to hide the TableView Header together with the NavigationBar?

我正在使用 Xcode 9 | Swift 4 如何使用 TableView Scroll 隐藏和显示 TableView Header 以及 NavigationBar,如示例照片所示?我想为阅读文本的任何人创建一个全屏模式来访问信息和搜索。在此先感谢您的帮助。 see sample image


see sample animated gif

将此代码写入 ViewDidLoad()

    let label = UILabel(frame: CGRect(x: view.frame.origin.x, y: view.frame.origin.y , width:200, height: 100))
    label.center = CGPoint(x: 160, y:284)
    label.textAlignment = NSTextAlignment.center
    label.backgroundColor = UIColor.lightGray
    label.numberOfLines = 0
    label.textColor = UIColor.black
    label.text = """
    O HOMEM INTERIOR
    30.03.1954 - Chicago - Illinois - E.U.A
    tradução : Go
    """
    tableview.tableHeaderView = label

当你滚动tableview headerview 时使用它会被隐藏。 希望对你有帮助!

通过本教程,我能够实现: https://michiganlabs.com/ios/development/2016/05/31/ios-animating-uitableview-header/