mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-08-27 07:48:42 +00:00
9 lines
227 B
Swift
9 lines
227 B
Swift
import UIKit
|
|
import AsyncDisplayKit
|
|
|
|
public protocol ContainableController: class {
|
|
var view: UIView! { get }
|
|
|
|
func containerLayoutUpdated(_ layout: ContainerViewLayout, transition: ContainedViewLayoutTransition)
|
|
}
|