MGCountDownRingView.h 412 B

1234567891011121314151617181920212223
  1. //
  2. // MGCountDownViewTwo.h
  3. // MGLivenessDetection
  4. //
  5. // Created by megvii on 16/4/13.
  6. // Copyright © 2016Year megvii. All rights reserved.
  7. //
  8. #import "MGBaseCountdownView.h"
  9. @interface MGCountDownRingView : MGBaseCountdownView
  10. /**
  11. * 显示倒计时的label
  12. */
  13. @property (nonatomic, strong) UILabel *numLabel;
  14. /**
  15. * 倒计时圆环
  16. */
  17. @property (nonatomic, strong) CAShapeLayer *circleLayer;
  18. @end