I have UIViewController. It has a UIView with three objects(UILabel, UIImageView, UITextView) inside UIScrollView. When I try scroll vertical nothing happens. I use autolayout. Before I made it without UIView inside UIScrollView but there is an empty space in the bottom.
@IBOutlet weak var scrollView: UIScrollView! {
didSet {
scrollView.delegate = self
scrollView.scrollEnabled = true
self.scrollView.frame.size = scrollView.contentSize //12
}
}

self.scrollView.contentSize = CGSizeMake(self.viewV.frame.width, self.view.frame.height)I get the error fatal error: unexpectedly found nil while unwrapping an Optional value