Skip to content

Instantly share code, notes, and snippets.

@onmotion
Created March 14, 2018 12:15
Show Gist options
  • Select an option

  • Save onmotion/fab9dc8f309366433b70744e4b9dfa6b to your computer and use it in GitHub Desktop.

Select an option

Save onmotion/fab9dc8f309366433b70744e4b9dfa6b to your computer and use it in GitHub Desktop.
swift centering content inside scrollView
//centering content inside scrollView
override func viewDidLayoutSubviews() {
super.viewDidLayoutSubviews()
let offsetY = max((scrollView.bounds.height - scrollView.contentSize.height) * 0.5, 0)
self.scrollView.contentInset = UIEdgeInsetsMake(offsetY, 0, 0, 0)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment