diff --git a/swift-2048/ViewController.swift b/swift-2048/ViewController.swift index 7a835655..516d8d74 100644 --- a/swift-2048/ViewController.swift +++ b/swift-2048/ViewController.swift @@ -16,6 +16,7 @@ class ViewController: UIViewController { @IBAction func startGameButtonTapped(_ sender : UIButton) { let game = NumberTileGameViewController(dimension: 4, threshold: 2048) + game.modalPresentationStyle = .fullScreen self.present(game, animated: true, completion: nil) } }