Skip to content

Instantly share code, notes, and snippets.

@farhan-syed
Created September 15, 2017 00:25
Show Gist options
  • Save farhan-syed/e88985e34f6b745c85b102368a4dede4 to your computer and use it in GitHub Desktop.
Save farhan-syed/e88985e34f6b745c85b102368a4dede4 to your computer and use it in GitHub Desktop.
import UIKit
class ViewController: UIViewController {
let scrollView: UIScrollView = {
let scroll = UIScrollView()
scroll.isPagingEnabled = true
scroll.showsVerticalScrollIndicator = false
scroll.showsHorizontalScrollIndicator = false
scroll.frame = CGRect(x: 0, y: 0, width: UIScreen.main.bounds.width, height: UIScreen.main.bounds.height)
return scroll
}()
...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment