// // WMZPageProtocol.h // WMZPageController // // Created by wmz on 2019/10/13. // Copyright © 2019 wmz. All rights reserved. // #import NS_ASSUME_NONNULL_BEGIN @protocol WMZPageProtocol @optional /* *悬浮 可滑动的滚动视图 */ - (UITableView*)getMyTableView; /* *悬浮 两者一样 下面的只是为了减少非tableview的警告 */ - (UIScrollView*)getMyScrollView; /* *子控制器需要固定的尾部视图 */ - (UIView*)fixFooterView; @end NS_ASSUME_NONNULL_END