YBAnchorPKAlert.h 570 B

123456789101112131415161718192021222324252627282930
  1. //
  2. // YBAnchorPKAlert.h
  3. // yunbaolive
  4. //
  5. // Created by Boom on 2018/11/29.
  6. // Copyright © 2018年 cat. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. typedef NS_ENUM(NSInteger,AnchorPkAlertType) {
  10. PkAlertType_Default,
  11. PkAlertType_TimeOut,
  12. PkAlertType_Agree,
  13. PkAlertType_unAgree,
  14. };
  15. typedef void (^AnchorPKAlertBlock)(AnchorPkAlertType pkAlertType);
  16. @interface YBAnchorPKAlert : UIView
  17. @property(nonatomic,copy)AnchorPKAlertBlock anchorPkEvent;
  18. - (instancetype)initWithFrame:(CGRect)frame andIsStart:(BOOL)start;
  19. - (void)removeTimer;
  20. @end