123456789101112131415161718 |
- //
- // FLCicleScrollTableCell.h
- // FirstLink
- //
- // Created by jack on 15/7/31.
- // Copyright (c) 2015年 FirstLink. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "CycleScrollView.h"
- #import "DPBannerView.h"
- @interface FLCycleScrollTableCell : UITableViewCell
- @property (nonatomic, strong) UIPageControl *pageControl;
- @property (nonatomic, strong) DPBannerView *banerView;
- @property (nonatomic, copy) void(^clickAction)(NSInteger index);
- @end
|