mirror of https://github.com/oxen-io/session-ios
				
				
				
			
			You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
	
	
		
			80 lines
		
	
	
		
			2.7 KiB
		
	
	
	
		
			Swift
		
	
			
		
		
	
	
			80 lines
		
	
	
		
			2.7 KiB
		
	
	
	
		
			Swift
		
	
| // Copyright © 2022 Rangeproof Pty Ltd. All rights reserved.
 | |
| 
 | |
| import UIKit
 | |
| import SessionUIKit
 | |
| 
 | |
| class VersionFooterView: UIView {
 | |
|     private static let footerHeight: CGFloat = 75
 | |
|     private static let logoHeight: CGFloat = 24
 | |
|     
 | |
|     // MARK: - UI
 | |
|     
 | |
|     private lazy var logoImageView: UIImageView = {
 | |
|         let result: UIImageView = UIImageView(
 | |
|             image: UIImage(named: "oxen_logo")?
 | |
|                 .withRenderingMode(.alwaysTemplate)
 | |
|         )
 | |
|         result.setContentHuggingPriority(.required, for: .vertical)
 | |
|         result.setContentCompressionResistancePriority(.required, for: .vertical)
 | |
|         result.themeTintColor = .textSecondary// .value(.textPrimary, alpha: Values.mediumOpacity)
 | |
|         result.contentMode = .scaleAspectFit
 | |
|         result.set(.height, to: VersionFooterView.logoHeight)
 | |
|         
 | |
|         return result
 | |
|     }()
 | |
|     
 | |
|     private lazy var versionLabel: UILabel = {
 | |
|         let result: UILabel = UILabel()
 | |
|         result.setContentHuggingPriority(.required, for: .vertical)
 | |
|         result.setContentCompressionResistancePriority(.required, for: .vertical)
 | |
|         result.font = .systemFont(ofSize: Values.verySmallFontSize)
 | |
|         result.themeTextColor = .textSecondary//.value(.textPrimary, alpha: Values.mediumOpacity)
 | |
|         result.textAlignment = .center
 | |
|         result.lineBreakMode = .byCharWrapping
 | |
|         result.numberOfLines = 0
 | |
|         
 | |
|         if
 | |
|             let version: String = Bundle.main.infoDictionary?["CFBundleShortVersionString"] as? String,
 | |
|             let buildNumber: String = Bundle.main.infoDictionary?["CFBundleVersion"] as? String
 | |
|         {
 | |
|             result.text = "Version \(version) (\(buildNumber))"
 | |
|         }
 | |
|         
 | |
|         return result
 | |
|     }()
 | |
|     
 | |
|     // MARK: - Initialization
 | |
|     
 | |
|     init() {
 | |
|         // Note: Need to explicitly set the height for a table footer view
 | |
|         // or it will have no height
 | |
|         super.init(
 | |
|             frame: CGRect(
 | |
|                 x: 0,
 | |
|                 y: 0,
 | |
|                 width: 0,
 | |
|                 height: VersionFooterView.footerHeight
 | |
|             )
 | |
|         )
 | |
|         
 | |
|         setupViewHierarchy()
 | |
|     }
 | |
|     
 | |
|     required init?(coder: NSCoder) {
 | |
|         fatalError("init(coder:) has not been implemented")
 | |
|     }
 | |
|     
 | |
|     // MARK: - Content
 | |
|     
 | |
|     private func setupViewHierarchy() {
 | |
|         addSubview(logoImageView)
 | |
|         addSubview(versionLabel)
 | |
|         
 | |
|         logoImageView.pin(.top, to: .top, of: self, withInset: Values.mediumSpacing)
 | |
|         logoImageView.center(.horizontal, in: self, withInset: -2)
 | |
|         versionLabel.pin(.top, to: .bottom, of: logoImageView, withInset: Values.mediumSpacing)
 | |
|         versionLabel.pin(.left, to: .left, of: self)
 | |
|         versionLabel.pin(.right, to: .right, of: self)
 | |
|     }
 | |
| }
 |