Only the first view shows when I want to scroll to the second view, it does not scroll PS I have a pageView controller and this code inside it
for view in self.view.subviews {
if let scrollView = view as? UIScrollView {
scrollView.delegate = self
scrollView.bounces = false
}
}
source
share