Skip to content

Instantly share code, notes, and snippets.

@jayesh15111988
Created February 23, 2019 14:28
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jayesh15111988/e60709aec474abf73ec5f1a16155a1bd to your computer and use it in GitHub Desktop.
Save jayesh15111988/e60709aec474abf73ec5f1a16155a1bd to your computer and use it in GitHub Desktop.
//
// AutolayoutScrollView.swift
// Sample
//
// Created by Jayesh Kawli on 2/23/19.
// Copyright © 2019 Jayesh Kawli. All rights reserved.
//
import UIKit
class ScrollViewAutolayoutCreator {
let contentView: UIView
let scrollView: UIScrollView
/**
An initializer for `ScrollViewAutolayoutCreator` to allow easier vertical scrolling using autolayout and `UISCrollView`
- parameters:
- superView: A view to which our autolayout equipped scrollView should be added
*/
init(superView: UIView) {
scrollView = UIScrollView()
scrollView.translatesAutoresizingMaskIntoConstraints = false
contentView = UIView()
contentView.translatesAutoresizingMaskIntoConstraints = false
superView.addSubview(scrollView)
scrollView.addSubview(contentView)
// Constraint to bind view horizontally. We do not support our scrollView to scroll horizontally for the sake of simplicity
NSLayoutConstraint.activate([
superView.leftAnchor.constraint(equalTo: contentView.leftAnchor),
superView.rightAnchor.constraint(equalTo: contentView.rightAnchor)
])
// Constraints to make UIScrollView working with autolayout so that it can expand in both directions as per the view added
// For scrollView
NSLayoutConstraint.activate([
scrollView.leftAnchor.constraint(equalTo: superView.leftAnchor),
scrollView.rightAnchor.constraint(equalTo: superView.rightAnchor),
scrollView.topAnchor.constraint(equalTo: superView.topAnchor),
scrollView.bottomAnchor.constraint(equalTo: superView.bottomAnchor)
])
// For contentView
NSLayoutConstraint.activate([
contentView.leftAnchor.constraint(equalTo: scrollView.leftAnchor),
contentView.rightAnchor.constraint(equalTo: scrollView.rightAnchor),
contentView.topAnchor.constraint(equalTo: scrollView.topAnchor),
contentView.bottomAnchor.constraint(equalTo: scrollView.bottomAnchor)
])
}
/**
Utility method to constraint `ScrollView` subviews horizontally with specified horizontal padding
- parameters:
- views: A sequential array of views which should be constrained horizontally
- horizontalPadding: A value of padding which should be applied at both horizontal ends
- Attention: Calling this method is optional. You can also set up horizontal constraints manually if you want to add custom layout as opposed to the generic one added here
*/
func addHorizontalConstraints(views: [UIView], horizontalPadding: CGFloat = 0.0) {
views.forEach { view in
NSLayoutConstraint.activate([
view.leftAnchor.constraint(equalTo: contentView.leftAnchor, constant: horizontalPadding),
view.rightAnchor.constraint(equalTo: contentView.rightAnchor, constant: -horizontalPadding)
])
}
}
/**
Utility method to constraint `ScrollView` subviews horizontally with specified vertical padding
- parameters:
- views: A sequential array of views which should be constrained vertically
- verticalPadding: A value of padding which should be applied at both vertical ends as well as between successive views
- Attention: Calling this method is optional. You can also set up vertical constraints manually if you want to add custom layout as opposed to the generic one added here
*/
func addVerticalConstraints(views: [UIView], verticalPadding: CGFloat = 10.0) {
guard !views.isEmpty else {
return
}
if views.count == 1, let view = views.first {
NSLayoutConstraint.activate([
view.topAnchor.constraint(equalTo: contentView.topAnchor, constant: verticalPadding),
view.bottomAnchor.constraint(equalTo: contentView.bottomAnchor, constant: -verticalPadding)
])
} else {
// Add top constraint to first view
if let firstView = views.first {
NSLayoutConstraint.activate([
firstView.topAnchor.constraint(equalTo: contentView.topAnchor, constant: verticalPadding)
])
}
// Add bottom constraint to first view
if let lastView = views.last {
NSLayoutConstraint.activate([
lastView.bottomAnchor.constraint(equalTo: contentView.bottomAnchor, constant: -verticalPadding)
])
}
// Add constraints between remaining views. Remember that we already setup vertical constraints for topmost and bottommost views
var temporaryViews = views
var previousView = temporaryViews.first!
temporaryViews.removeFirst()
for view in temporaryViews {
NSLayoutConstraint.activate([
view.topAnchor.constraint(equalTo: previousView.bottomAnchor, constant: verticalPadding),
])
previousView = view
}
}
}
/**
Utility method to scroll `UIScrollView` all the way to top
*/
func scrollToTop() {
scrollView.setContentOffset(CGPoint(x: 0.0, y: -scrollView.contentInset.top), animated: true)
}
/**
Utility method to scroll `UIScrollView` all the way to bottom
*/
func scrollToBottom() {
scrollView.setContentOffset(CGPoint(x: 0.0, y: scrollView.contentSize.height - scrollView.bounds.height), animated: true)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment