CSJRewardAlertView.h 746 B

1234567891011121314151617181920212223242526272829303132
  1. //
  2. // CSJRewardAlertView.h
  3. // CSJAdSDK
  4. //
  5. // Created by iCuiCui on 2019/1/25.
  6. // Copyright © 2019年 bytedance. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "CSJRewardAlertStyleModel.h"
  10. @interface CSJRewardAlertView : UIView
  11. - (instancetype)initWithFrame:(CGRect)frame confirm:(dispatch_block_t)confirm cancel:(dispatch_block_t)cancel;
  12. - (void)showInView:(UIView *)parentView;
  13. /// show alertView in window (alertLevel)
  14. - (void)showInWindow;
  15. /// update the text of title label
  16. - (void)updateTextOfTitle:(NSString *)title;
  17. // 蓝底为confirm
  18. - (void)updateTextOfConfirm:(NSString *)text;
  19. // 白底为cancel
  20. - (void)updateTextOfCancel:(NSString *)text;
  21. - (void)updateWithStyle:(CSJRewardAlertStyleModel *)styleModel;
  22. @end