123456789101112131415161718192021222324252627282930313233343536 |
- //
- // XYRotaryTableViewController.h
- // Timi
- //
- // Created by 翟玉磊 on 2021/4/15.
- //
- #import "BaseViewController.h"
- NS_ASSUME_NONNULL_BEGIN
- @protocol XYRotaryTableViewControllerDelegate <NSObject>
- - (void)rotaryTableFinishWithLotteryResultMsg:(XYLiveRoomMessageInfo *)info;
- - (void)closeRotaryTable;
- @end
- @interface XYRotaryTableViewController : BaseViewController
- @property (nonatomic, weak) id<XYRotaryTableViewControllerDelegate>delegate;
- @property (nonatomic, copy) NSString *roomId;
- - (void)clear;
- - (void)showWithController:(UIViewController *)controler view:(UIView *)view;
- - (void)dismiss;
- - (void)closeRotaryTable;
- - (void)reset;
- /// 中奖结果
- - (void)lotteryResultMessageInfo:(id)info;
- @end
- NS_ASSUME_NONNULL_END
|