Guest User

Untitled

a guest
Dec 14th, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. let highScore = UserDefaults.standard.object(forKey: "highscore")
  2.  
  3. if highScore == nil{
  4.  
  5. highscoreLabel.text = "HighScore : 0"
  6. }
  7.  
  8. if let newScore = highScore as? Int{
  9.  
  10. highscoreLabel.text = "HighScore : \(newScore)"
  11. }
Add Comment
Please, Sign In to add comment