Scrollable UINavigationBar that follows the scrolling of a UIScrollView
override func viewDidAppear(animated: Bool) {
super.viewDidAppear(animated)
if let navigationController = self.navigationController as? ScrollingNavigationController {
navigationController.followScrollView(tableView, delay: 50.0)
}
}