Skip to content

Instantly share code, notes, and snippets.

@meyusufdemirci
Created January 30, 2018 18:05
Show Gist options
  • Save meyusufdemirci/2d7010ced7ae2e314a8e84e908fb69d6 to your computer and use it in GitHub Desktop.
Save meyusufdemirci/2d7010ced7ae2e314a8e84e908fb69d6 to your computer and use it in GitHub Desktop.
@objc func onRotated() {
// portrait
if UIDeviceOrientationIsPortrait(UIDevice.current.orientation) {
}
// landscape
else if UIDeviceOrientationIsLandscape(UIDevice.current.orientation) {
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment