added iOS source code
[wl-app.git] / iOS / WolneLektury / Screens / Common / WLNavigationController.swift
1 //
2 //  WLNavigationController.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
11 class WLNavigationController: UINavigationController {
12
13     override var shouldAutorotate: Bool {
14         return true
15     }
16     
17     override var supportedInterfaceOrientations: UIInterfaceOrientationMask {
18         
19         return UIDevice.current.userInterfaceIdiom == .pad ? .all : .portrait
20     }
21
22 }