Keine Beschreibung

FKProCountDownView.h 407B

123456789101112131415161718192021222324
  1. //
  2. // FKProCountDownView.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 FKTimeUnitView : UIView
  10. @property (nonatomic, strong) UILabel *timeLabel;
  11. @end
  12. @interface FKProCountDownView : UIView
  13. @property (nonatomic, strong) UILabel *descLabel;
  14. - (void)startWithTimeInterval:(NSTimeInterval)ti;
  15. @end