I want to find back my 
private var currentCount : Int? which is on my main ViewController
in a second ViewController (ViewController2). 
But I can't catch it
After, I would like to store the value of this counter to make an "if" loop to enable and disable a button. Can anyone help me? thank you so much
import UIKit
class ViewController: UIViewController
{
    /// Label
    private var customLabel : UILabel?
    /// MAximum Count to which label will be Updated
    private var maxCount : Int?
    /// Count which is currently displayed in Label
    private var currentCount : Int?
    /// Timer To animate label text
    private var updateTimer : Timer?
    override func viewDidLoad() {
        super.viewDidLoad()
        // Do any additional setup after loading the view, typically from a nib.
        customLabel = UILabel()
        customLabel?.textColor = .white
        customLabel?.font = UIFont(name: "HelveticaNeue-Bold", size: 25)
        customLabel?.textAlignment = .center
        /// Add label to View
        addConstraints()
        /// Start Timer
        DispatchQueue.main.async {
            self.maxCount = 600
            self.currentCount = 1
            self.updateTimer = Timer.scheduledTimer(timeInterval: 0.2, target: self, selector: #selector(ViewController.updateLabel), userInfo: nil, repeats: true)
        }
    }
    @objc func updateLabel() {
        self.customLabel?.text = String(currentCount!)
        currentCount! += 1
        if currentCount! > maxCount! {
            /// Release All Values
            self.updateTimer?.invalidate()
            self.updateTimer = nil
            self.maxCount = nil
            self.currentCount = nil
        }
    }
    func addConstraints(){
        /// Add Required Constraints
        self.view.addSubview(customLabel!)
        customLabel?.translatesAutoresizingMaskIntoConstraints = false
        customLabel?.leftAnchor.constraint(equalTo: self.view.leftAnchor, constant: 195).isActive = true
        customLabel?.trailingAnchor.constraint(equalTo: self.view.trailingAnchor, constant: -50).isActive = true
        customLabel?.heightAnchor.constraint(equalToConstant: 50).isActive = true
        customLabel?.topAnchor.constraint(equalTo: self.view.topAnchor, constant: 310).isActive = true
    }
        }
 //
//  ViewController2.swift
//  PROJET X
//
//  Created by Alexis Decloedt on 22/12/2019.
//  Copyright © 2019 Alexis Decloedt. All rights reserved.
//
import UIKit
class ViewController2: UIViewController {
    @IBOutlet weak var Clue1Button: UIButton!
    @IBOutlet weak var Clue2Button: UIButton!
    @IBOutlet weak var Clue3Button: UIButton!
    @IBOutlet weak var Clue4Button: UIButton!
    @IBOutlet weak var Clue5Button: UIButton!
    @IBOutlet weak var Clue6Button: UIButton!
    override func viewDidLoad() {
        super.viewDidLoad()
        Clue1Button.isEnabled = true
        Clue2Button.isEnabled = true
        Clue3Button.isEnabled = true
        Clue4Button.isEnabled = true
        Clue5Button.isEnabled = true
        Clue6Button.isEnabled = true
        let guide = view.safeAreaLayoutGuide
        let height = guide.layoutFrame.size.height
        // Do any additional setup after loading the view.
    }
    @IBAction func ChestButton(_ sender: Any) {
        dismiss(animated: false, completion: nil)
    }
    }
 
     
     
    