2020-03-24 13:27:44 -07:00
|
|
|
//
|
|
|
|
|
// TextCollectionReusableView.swift
|
|
|
|
|
// AltStore
|
|
|
|
|
//
|
|
|
|
|
// Created by Riley Testut on 3/23/20.
|
|
|
|
|
// Copyright © 2020 Riley Testut. All rights reserved.
|
|
|
|
|
//
|
|
|
|
|
|
|
|
|
|
import UIKit
|
|
|
|
|
|
|
|
|
|
class TextCollectionReusableView: UICollectionReusableView
|
|
|
|
|
{
|
|
|
|
|
@IBOutlet var textLabel: UILabel!
|
2022-04-14 16:24:11 -07:00
|
|
|
|
|
|
|
|
@IBOutlet var topLayoutConstraint: NSLayoutConstraint!
|
|
|
|
|
@IBOutlet var bottomLayoutConstraint: NSLayoutConstraint!
|
|
|
|
|
@IBOutlet var leadingLayoutConstraint: NSLayoutConstraint!
|
|
|
|
|
@IBOutlet var trailingLayoutConstraint: NSLayoutConstraint!
|
2020-03-24 13:27:44 -07:00
|
|
|
}
|