123456789101112131415161718192021222324252627282930313233343536373839 |
- //
- // StampCollectionHeaderView.swift
- // ComPDFKit_Tools
- //
- // Copyright © 2014-2024 PDF Technologies, Inc. All Rights Reserved.
- //
- // THIS SOURCE CODE AND ANY ACCOMPANYING DOCUMENTATION ARE PROTECTED BY INTERNATIONAL COPYRIGHT LAW
- // AND MAY NOT BE RESOLD OR REDISTRIBUTED. USAGE IS BOUND TO THE ComPDFKit LICENSE AGREEMENT.
- // UNAUTHORIZED REPRODUCTION OR DISTRIBUTION IS SUBJECT TO CIVIL AND CRIMINAL PENALTIES.
- // This notice may not be removed from this file.
- //
- import UIKit
- class StampCollectionHeaderView: UICollectionReusableView {
- var textLabel: UILabel?
-
- override init(frame: CGRect) {
- super.init(frame: frame)
- backgroundColor = UIColor(red: 248.0/255.0, green: 248.0/255.0, blue: 248.0/255.0, alpha: 1.0)
- textLabel = UILabel()
- textLabel?.textColor = UIColor(red: 36.0/255.0, green: 36.0/255.0, blue: 36.0/255.0, alpha: 1.0)
- textLabel?.font = UIFont.systemFont(ofSize: 14.0)
- if textLabel != nil {
- addSubview(textLabel!)
- }
-
- }
-
- required init?(coder: NSCoder) {
- super.init(coder: coder)
- }
-
- override func layoutSubviews() {
- super.layoutSubviews()
- textLabel?.frame = CGRect(x: 10, y: 0, width: bounds.size.width-20, height: 20)
- }
-
- }
|