暫無描述

FKRecoCountDownView.h 427B

1234567891011121314151617181920212223242526
  1. //
  2. // FKRecoCountDownView.h
  3. // FirstLink
  4. //
  5. // Created by ascii on 2016/11/14.
  6. // Copyright © 2016年 FirstLink. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface FKRecoTimeUnitView : UIView
  10. @property (nonatomic, strong) UILabel *timeLabel;
  11. @end
  12. @interface FKRecoCountDownView : UIView
  13. @property (nonatomic, strong) UILabel *descLabel;
  14. - (void)setTimeInterval:(NSTimeInterval)ti;
  15. + (CGFloat)height;
  16. @end