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