MoviaBox/ShortPlay/Thirdparty/JYPageController/Classes/JYPageContollerProtocol.swift
2025-04-09 18:24:58 +08:00

22 lines
530 B
Swift

//
// JYPageContollerProtocol.swift
// JYPageController
//
// Created by wang tao on 2022/10/15.
//
import UIKit
@objc public protocol JYPageChildContollerProtocol where Self: UIViewController {
///fetch child controller scrollView. headerViewsegmentedViewtableView/collectionView/scrollView
@objc optional func fetchChildControllerScrollView() -> UIScrollView?
}
class JYPlaceHolderController: UIViewController,JYPageChildContollerProtocol {
}