XYRotaryTableViewController.h 744 B

123456789101112131415161718192021222324252627282930313233343536
  1. //
  2. // XYRotaryTableViewController.h
  3. // Timi
  4. //
  5. // Created by 翟玉磊 on 2021/4/15.
  6. //
  7. #import "BaseViewController.h"
  8. NS_ASSUME_NONNULL_BEGIN
  9. @protocol XYRotaryTableViewControllerDelegate <NSObject>
  10. - (void)rotaryTableFinishWithLotteryResultMsg:(XYLiveRoomMessageInfo *)info;
  11. - (void)closeRotaryTable;
  12. @end
  13. @interface XYRotaryTableViewController : BaseViewController
  14. @property (nonatomic, weak) id<XYRotaryTableViewControllerDelegate>delegate;
  15. @property (nonatomic, copy) NSString *roomId;
  16. - (void)clear;
  17. - (void)showWithController:(UIViewController *)controler view:(UIView *)view;
  18. - (void)dismiss;
  19. - (void)closeRotaryTable;
  20. - (void)reset;
  21. /// 中奖结果
  22. - (void)lotteryResultMessageInfo:(id)info;
  23. @end
  24. NS_ASSUME_NONNULL_END