YRCountDownView.h 350 B

12345678910111213141516171819
  1. //
  2. // YRCountDownView.h
  3. // UU_Ent
  4. //
  5. // Created by liujl on 2019/4/30.
  6. // Copyright © 2019 UAS. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface YRCountDownView : UIView
  11. -(instancetype)initWithFrame:(CGRect)frame interval:(NSInteger)interval completed:(void(^)(void))completed;
  12. @end
  13. NS_ASSUME_NONNULL_END