Created
September 15, 2017 00:25
-
-
Save farhan-syed/e88985e34f6b745c85b102368a4dede4 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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