CSJRewardedAgianAlertView.h 606 B

123456789101112131415161718192021222324
  1. //
  2. // CSJRewardedAgianAlertView.h
  3. // CSJAdSDK
  4. //
  5. // Created by wangyanlin on 2021/6/2.
  6. //
  7. #import <UIKit/UIKit.h>
  8. NS_ASSUME_NONNULL_BEGIN
  9. @interface CSJRewardedAgianAlertView : UIView
  10. - (instancetype)initWithFrame:(CGRect)frame confirm:(dispatch_block_t)confirm cancel:(dispatch_block_t)cancel;
  11. - (void)showInView:(UIView *)parentView;
  12. - (void)disappear;
  13. /// update the text of title label
  14. - (void)updateTextOfTitle:(NSString *)title;
  15. - (void)updateTextOfMessage:(NSString *)text;
  16. //- (void)updateConfirmBtnColor:(UIColor *)color;
  17. //- (void)updateIcon:(UIImage *)image;
  18. @end
  19. NS_ASSUME_NONNULL_END