2021-02-05 09:50:40 +01:00
|
|
|
//
|
|
|
|
// ContentOffsetAdjustableTimelineViewControllerDelegate.swift
|
|
|
|
// Mastodon
|
|
|
|
//
|
|
|
|
// Created by sxiaojian on 2021/2/5.
|
|
|
|
//
|
|
|
|
|
|
|
|
import UIKit
|
|
|
|
|
2021-05-08 05:03:34 +02:00
|
|
|
protocol ContentOffsetAdjustableTimelineViewControllerDelegate: AnyObject {
|
2021-02-05 09:50:40 +01:00
|
|
|
func navigationBar() -> UINavigationBar?
|
|
|
|
}
|
|
|
|
|