mirror of
https://github.com/SideStore/SideStore.git
synced 2026-02-09 06:43:25 +01:00
Previously, only the beta version of AltStore could add sources. Now, the public version supports adding explicitly “trusted” sources, while the beta version can continue to add any source.
20 lines
525 B
Swift
20 lines
525 B
Swift
//
|
|
// 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!
|
|
|
|
@IBOutlet var topLayoutConstraint: NSLayoutConstraint!
|
|
@IBOutlet var bottomLayoutConstraint: NSLayoutConstraint!
|
|
@IBOutlet var leadingLayoutConstraint: NSLayoutConstraint!
|
|
@IBOutlet var trailingLayoutConstraint: NSLayoutConstraint!
|
|
}
|