mirror of
https://github.com/SideStore/SideStore.git
synced 2026-02-08 22:33:26 +01:00
20 lines
534 B
Swift
20 lines
534 B
Swift
//
|
|
// TextCollectionReusableView.swift
|
|
// AltStore
|
|
//
|
|
// Created by Riley Testut on 3/23/20.
|
|
// Copyright © 2020 Riley Testut. All rights reserved.
|
|
//
|
|
|
|
import UIKit
|
|
|
|
@objc
|
|
public class TextCollectionReusableView: UICollectionReusableView {
|
|
@IBOutlet var textLabel: UILabel!
|
|
|
|
@IBOutlet var topLayoutConstraint: NSLayoutConstraint!
|
|
@IBOutlet var bottomLayoutConstraint: NSLayoutConstraint!
|
|
@IBOutlet var leadingLayoutConstraint: NSLayoutConstraint!
|
|
@IBOutlet var trailingLayoutConstraint: NSLayoutConstraint!
|
|
}
|