Bez popisu

FKProBannerCell.h 560B

123456789101112131415161718192021222324
  1. //
  2. // FKProBannerCell.h
  3. // FirstLink
  4. //
  5. // Created by jack on 16/8/12.
  6. // Copyright © 2016年 FirstLink. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "CycleScrollView.h"
  10. #import "DPBannerView.h"
  11. @interface FKProBannerCell : UITableViewCell
  12. @property (nonatomic, strong) UIPageControl *pageControl;
  13. @property (nonatomic, strong) DPBannerView *banerView;
  14. @property (nonatomic, strong) UIButton *goToDetailBtn;
  15. @property (nonatomic, copy) void(^clickAction)(NSInteger index, FKProBannerCell *cell);
  16. + (CGFloat)height;
  17. @end