123456789101112131415161718192021222324 |
- //
- // FKProCountDownView.h
- // FirstLink
- //
- // Created by ascii on 2016/11/14.
- // Copyright © 2016年 FirstLink. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @interface FKTimeUnitView : UIView
- @property (nonatomic, strong) UILabel *timeLabel;
- @end
- @interface FKProCountDownView : UIView
- @property (nonatomic, strong) UILabel *descLabel;
- - (void)startWithTimeInterval:(NSTimeInterval)ti;
- @end
|