-4
@IBOutlet var highScore: UILabel!

override func viewDidLoad() {
  super.viewDidLoad()
  highScore.text = mhighScoreNum
}
Ozgur Vatansever
  • 49,246
  • 17
  • 84
  • 119
Will Z
  • 1
  • 1

1 Answers1

0

It should be:

  highScore.text = "\(mhighScoreNum)"

Though basic!

Preetam Jadakar
  • 4,479
  • 2
  • 28
  • 58