No Description

FKProActivityBaseCell.h 540B

123456789101112131415161718192021222324
  1. //
  2. // FKProActivityBaseCell.h
  3. // FirstLink
  4. //
  5. // Created by ascii on 2016/11/11.
  6. // Copyright © 2016年 FirstLink. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "FKProCountDownView.h"
  10. @interface FKProActivityBaseCell : UITableViewCell
  11. @property (nonatomic, strong) UIImageView *bgImageView;
  12. @property (nonatomic, strong) UIImageView *leftIconView;
  13. @property (nonatomic, strong) UILabel *titleLabel;
  14. @property (nonatomic, strong) FKProCountDownView *countDownView;
  15. + (CGFloat)height;
  16. + (CGFloat)countDownViewWidth;
  17. @end