123456789101112131415161718192021222324 |
- //
- // FKProBannerCell.h
- // FirstLink
- //
- // Created by jack on 16/8/12.
- // Copyright © 2016年 FirstLink. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "CycleScrollView.h"
- #import "DPBannerView.h"
- @interface FKProBannerCell : UITableViewCell
- @property (nonatomic, strong) UIPageControl *pageControl;
- @property (nonatomic, strong) DPBannerView *banerView;
- @property (nonatomic, strong) UIButton *goToDetailBtn;
- @property (nonatomic, copy) void(^clickAction)(NSInteger index, FKProBannerCell *cell);
- + (CGFloat)height;
- @end
|