I had a bug when I updated to Swift 3.0. For some reason Swift 3.0 doesn't support CGSizeMake
. My code looks like this:
self.scrollView.contentSize = CGSizeMake(self.view.frame.width*2,
self.view.frame.size.height)
What could be some alternatives for CGSizeMake
in my case? Please help!