1234567891011121314151617181920212223242526272829303132333435363738394041 |
- //
- // PGIndexBannerSubiew.h
- // NewPagedFlowViewDemo
- //
- // Created by Mars on 16/6/18.
- // Copyright © 2016年 Mars. All rights reserved.
- // Designed By PageGuo,
- // QQ:799573715
- // github:https://github.com/PageGuo/NewPagedFlowView
- /******************************
-
- 可以根据自己的需要继承PGIndexBannerSubiew
-
- ******************************/
- #import <UIKit/UIKit.h>
- @interface PGIndexBannerSubiew : UIView
- /**
- * 主图
- */
- @property (nonatomic, strong) UIImageView *mainImageView;
- /**
- * 用来变色的view
- */
- @property (nonatomic, strong) UIView *coverView;
- @property (nonatomic, copy) void (^didSelectCellBlock)(NSInteger tag, PGIndexBannerSubiew *cell);
- /**
- 设置子控件frame,继承后要重写
- @param superViewBounds <#superViewBounds description#>
- */
- - (void)setSubviewsWithSuperViewBounds:(CGRect)superViewBounds;
- @end
|