1234567891011121314151617181920212223242526 |
- //
- // FKRecoCountDownView.h
- // FirstLink
- //
- // Created by ascii on 2016/11/14.
- // Copyright © 2016年 FirstLink. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @interface FKRecoTimeUnitView : UIView
- @property (nonatomic, strong) UILabel *timeLabel;
- @end
- @interface FKRecoCountDownView : UIView
- @property (nonatomic, strong) UILabel *descLabel;
- - (void)setTimeInterval:(NSTimeInterval)ti;
- + (CGFloat)height;
- @end
|