@IBOutlet var highScore: UILabel!
override func viewDidLoad() {
  super.viewDidLoad()
  highScore.text = mhighScoreNum
}
            Asked
            
        
        
            Active
            
        
            Viewed 71 times
        
    -4
            
            
         
    
    
        Ozgur Vatansever
        
- 49,246
- 17
- 84
- 119
 
    
    
        Will Z
        
- 1
- 1
- 
                    1You should convert the `Int` to a `String` – Hamish Apr 23 '17 at 08:15
- 
                    `highScore.text = "\(mhighScoreNum)"` – Ozgur Vatansever Apr 23 '17 at 08:15
