Files

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
}
}