added iOS source code
[wl-app.git] / iOS / WolneLektury / Screens / Common / WLSideMenuNavigationController.swift
1 //
2 //  WLSideMenuNavigationController.swift
3 //  WolneLektury
4 //
5 //  Created by Pawel Dabrowski on 28/09/2018.
6 //  Copyright © 2018 Fundacja Nowoczesna Polska. All rights reserved.
7 //
8
9 import UIKit
10 import SideMenu
11 class WLSideMenuNavigationController:  UISideMenuNavigationController{
12
13     override var shouldAutorotate: Bool {
14         return true
15     }
16     
17     override var supportedInterfaceOrientations: UIInterfaceOrientationMask {
18         return UIDevice.current.userInterfaceIdiom == .pad ? .all : .portrait
19     }
20 }