| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- //
- // UserAgreementViewController.swift
- // TXLiteAVDemo
- //
- // Created by lijie on 2020/6/23.
- // Copyright © 2020 Tencent. All rights reserved.
- //
- import UIKit
- class UserAgreementViewController: UIViewController {
- static let UserAgreeKey = "UserAgreeKey"
-
- typealias Completion = () -> Void
- var completion: Completion? = nil
-
- var topPadding: CGFloat = {
- if #available(iOS 11.0, *) {
- if let window = SceneDelegate.getCurrentWindow() {
- return window.safeAreaInsets.top
- }
- return 0
- }
- return 0
- }()
-
- var bottomPadding: CGFloat = {
- if #available(iOS 11.0, *) {
- if let window = SceneDelegate.getCurrentWindow() {
- return window.safeAreaInsets.top
- }
- return 0
- }
- return 0
- }()
-
- static func isAgree() -> Bool {
- if let isAgree = UserDefaults.standard.object(forKey: UserAgreeKey) as? Bool {
- return isAgree
- }
- return false
- }
-
- override func viewDidLoad() {
- super.viewDidLoad()
-
- setupUI()
- }
-
- deinit {
- debugPrint("deinit \(self)")
- }
- }
|