Files
ScrollingContentViewController/Source/ScrollViewBounceControlling.swift
T
Drew Olbrich 64e4ae6a9c Initial commit
2019-02-03 12:22:40 -08:00

20 lines
493 B
Swift

//
// ScrollViewBounceControlling.swift
// ScrollingContentViewController
//
// Created by Drew Olbrich on 1/6/19.
// Copyright 2019 Oath Inc.
//
// Licensed under the terms of the MIT License. See the file LICENSE for the full terms.
//
import UIKit
/// Delegate for `ScrollViewBounceController`.
internal protocol ScrollViewBounceControlling: class {
/// Scroll view whose `alwaysBounceVertical` property is manipulated.
var scrollView: ScrollingContentScrollView { get }
}