mirror of
https://github.com/LeoNatan/LNPopupController.git
synced 2026-07-30 16:11:51 +00:00
18 lines
335 B
Swift
18 lines
335 B
Swift
//
|
|
// PortraitTabBarController.swift
|
|
// LNPopupControllerExample
|
|
//
|
|
// Created by Leo Natan on 8/8/15.
|
|
// Copyright © 2015 Leo Natan. All rights reserved.
|
|
//
|
|
|
|
import UIKit
|
|
|
|
class PortraitTabBarController: UITabBarController {
|
|
|
|
override var supportedInterfaceOrientations : UIInterfaceOrientationMask {
|
|
return .portrait
|
|
}
|
|
|
|
}
|