Swift Swipe Navigation Table Views
问题 I'm trying to do a swipe navigation between different tableViewControllers in swift. I managed to do it with viewControllers with the following code : import UIKit class ViewController: UIViewController { @IBOutlet weak var scrollView: UIScrollView! override func viewDidLoad() { super.viewDidLoad() } var scrollViewAdded = false override func viewDidLayoutSubviews() { super.viewDidLayoutSubviews() if !scrollViewAdded { self.loadSrollView() self.scrollViewAdded = true } } func loadSrollView() {