14 lines
256 B
Swift
14 lines
256 B
Swift
//
|
|
// GenericCollectionView.swift
|
|
// SkeletonView-iOS
|
|
//
|
|
// Created by Juanpe Catalán on 30/03/2018.
|
|
// Copyright © 2018 SkeletonView. All rights reserved.
|
|
//
|
|
|
|
import UIKit
|
|
|
|
protocol GenericCollectionView {
|
|
var scrollView: UIScrollView { get }
|
|
}
|