1234567891011121314151617181920212223 |
- //
- // MGCountDownViewTwo.h
- // MGLivenessDetection
- //
- // Created by megvii on 16/4/13.
- // Copyright © 2016Year megvii. All rights reserved.
- //
- #import "MGBaseCountdownView.h"
- @interface MGCountDownRingView : MGBaseCountdownView
- /**
- * 显示倒计时的label
- */
- @property (nonatomic, strong) UILabel *numLabel;
- /**
- * 倒计时圆环
- */
- @property (nonatomic, strong) CAShapeLayer *circleLayer;
- @end
|