// // ZJContentView.h // ZJScrollPageView // // Created by jasnig on 16/5/6. // Copyright © 2016年 ZeroJ. All rights reserved. // #import #import "ZJScrollPageViewDelegate.h" @class ZJScrollSegmentView; @class ZJContentView; @interface ZJContentView : UIView /** 必须设置代理和实现相关的方法*/ @property(weak, nonatomic)id delegate; @property (strong, nonatomic, readonly) UIScrollView *scrollView; /**初始化方法 * */ - (instancetype)initWithFrame:(CGRect)frame segmentView:(ZJScrollSegmentView *)segmentView parentViewController:(UIViewController *)parentViewController delegate:(id) delegate; /** 给外界可以设置ContentOffSet的方法 */ - (void)setContentOffSet:(CGPoint)offset animated:(BOOL)animated; /** 给外界 重新加载内容的方法 */ - (void)reload; @end