I'm following some online examples I found on how to setup a UI Scroll View and have run into a problem with setting the size of the Scroll View. I'm attempting to set the size to height = height of screen and width = 3x width of screen. Here is the code I'm attempting, but CGSizeMake is no longer supported in Swift3. Any suggestions on how to accomplish this without CGSizeMake?
self.scrollView.contentSize = CGSizeMake(self.view.frame.width * 2, self.view.frame.size.height)
Thanks!