Created
October 24, 2016 03:47
-
-
Save ahikmatf/4d47d35b4f019c248a3502e782d452f1 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// detect device orientation | |
override func viewWillTransition(to size: CGSize, with coordinator: UIViewControllerTransitionCoordinator) { | |
if UIDevice.current.orientation.isLandscape { | |
self.view.backgroundColor = UIColor(patternImage: UIImage(named: "back-landscape")!) | |
} else { | |
self.view.backgroundColor = UIColor(patternImage: UIImage(named: "back-potrait")!) | |
} | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment