WMZPageProtocol.h 525 B

12345678910111213141516171819202122232425262728293031323334
  1. //
  2. // WMZPageProtocol.h
  3. // WMZPageController
  4. //
  5. // Created by wmz on 2019/10/13.
  6. // Copyright © 2019 wmz. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @protocol WMZPageProtocol <NSObject>
  11. @optional
  12. /*
  13. *悬浮 可滑动的滚动视图
  14. */
  15. - (UITableView*)getMyTableView;
  16. /*
  17. *悬浮 两者一样 下面的只是为了减少非tableview的警告
  18. */
  19. - (UIScrollView*)getMyScrollView;
  20. /*
  21. *子控制器需要固定的尾部视图
  22. */
  23. - (UIView*)fixFooterView;
  24. @end
  25. NS_ASSUME_NONNULL_END