mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-08-28 08:30:11 +00:00
11 lines
364 B
Swift
11 lines
364 B
Swift
import UIKit
|
|
import AsyncDisplayKit
|
|
|
|
public protocol ContainableController: class {
|
|
var view: UIView! { get }
|
|
|
|
func combinedSupportedOrientations(currentOrientationToLock: UIInterfaceOrientationMask) -> ViewControllerSupportedOrientations
|
|
|
|
func containerLayoutUpdated(_ layout: ContainerViewLayout, transition: ContainedViewLayoutTransition)
|
|
}
|