mirror of
https://github.com/ichmagmaus111/ghostgram.git
synced 2026-04-24 08:36:07 +02:00
9 lines
225 B
Swift
9 lines
225 B
Swift
import Foundation
|
|
import UIKit
|
|
|
|
public protocol NavigationBarTitleView {
|
|
func animateLayoutTransition()
|
|
|
|
func updateLayout(size: CGSize, clearBounds: CGRect, transition: ContainedViewLayoutTransition) -> CGRect
|
|
}
|