// // 如遇到问题或有更好方案,请通过以下方式进行联系 // QQ群:429899752 // Email:kingsic@126.com // GitHub:https://github.com/kingsic/SGPagingView // // SGPageContentView.h // SGPagingViewExample // // Created by kingsic on 16/10/6. // Copyright © 2016年 kingsic. All rights reserved. // #import @class SGPageContentView; @protocol SGPageContentViewDelegate @optional /** * 联动 SGPageTitleView 的方法 * * @param pageContentView SGPageContentView * @param progress SGPageContentView 内部视图滚动时的偏移量 * @param originalIndex 原始视图所在下标 * @param targetIndex 目标视图所在下标 */ - (void)pageContentView:(SGPageContentView *)pageContentView progress:(CGFloat)progress originalIndex:(NSInteger)originalIndex targetIndex:(NSInteger)targetIndex; /** * 给 SGPageContentView 所在控制器提供的方法(根据偏移量来处理返回手势的问题) * * @param pageContentView SGPageContentView * @param offsetX SGPageContentView 内部视图的偏移量 */ - (void)pageContentView:(SGPageContentView *)pageContentView offsetX:(CGFloat)offsetX; @end @interface SGPageContentView : UIView /** * 对象方法创建 SGPageContentView * * @param frame frame * @param parentVC 当前控制器 * @param childVCs 子控制器个数 */ - (instancetype)initWithFrame:(CGRect)frame parentVC:(UIViewController *)parentVC childVCs:(NSArray *)childVCs; /** * 类方法创建 SGPageContentView * * @param frame frame * @param parentVC 当前控制器 * @param childVCs 子控制器个数 */ + (instancetype)pageContentViewWithFrame:(CGRect)frame parentVC:(UIViewController *)parentVC childVCs:(NSArray *)childVCs; /** SGPageContentViewDelegate */ @property (nonatomic, weak) id delegatePageContentView; /** 是否需要滚动 SGPageContentView 默认为 YES;设为 NO 时,不必设置 SGPageContentView 的代理及代理方法 */ @property (nonatomic, assign) BOOL isScrollEnabled; /** 给外界提供的方法,获取 SGPageTitleView 选中按钮的下标 */ - (void)setPageCententViewCurrentIndex:(NSInteger)currentIndex; @end