This is my code:
for view in arrayViews {
self.addChildViewController(view)
self.scroll.addSubview(view.view)
view.didMove(toParentViewController: self)
}
And I get this error at the line: self.scroll.addSubview(view.view)
:
fatal error: unexpectedly found nil while unwrapping an Optional value
By the way scroll is a UIScrollView
.