mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2026-02-10 04:56:22 +00:00
11 lines
304 B
Swift
11 lines
304 B
Swift
import Foundation
|
|
import UIKit
|
|
|
|
public protocol NavigationBarTitleView: UIView {
|
|
var requestUpdate: ((ContainedViewLayoutTransition) -> Void)? { get set }
|
|
|
|
func animateLayoutTransition()
|
|
|
|
func updateLayout(availableSize: CGSize, transition: ContainedViewLayoutTransition) -> CGSize
|
|
}
|