123456789101112131415161718192021222324 |
- //
- // FKProActivityBaseCell.h
- // FirstLink
- //
- // Created by ascii on 2016/11/11.
- // Copyright © 2016年 FirstLink. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "FKProCountDownView.h"
- @interface FKProActivityBaseCell : UITableViewCell
- @property (nonatomic, strong) UIImageView *bgImageView;
- @property (nonatomic, strong) UIImageView *leftIconView;
- @property (nonatomic, strong) UILabel *titleLabel;
- @property (nonatomic, strong) FKProCountDownView *countDownView;
- + (CGFloat)height;
- + (CGFloat)countDownViewWidth;
- @end
|