feat: 修正初步 debug 问题

This commit is contained in:
eggmanQQQ
2024-10-12 19:30:41 +08:00
parent 80549b57aa
commit 3f6fae9c07
44 changed files with 890 additions and 167 deletions

View File

@@ -21,6 +21,7 @@ NS_ASSUME_NONNULL_BEGIN
@interface XPRoomActivityContainerView : UIView<RoomGuestDelegate>
@property(nonatomic,copy)OpenRedPacketHandle openRedPacketHandle;
@property (nonatomic, copy) void(^showSendGiftView)(void);
@property(nonatomic,strong) NSMutableArray *redPacketList;
@property(nonatomic,strong) NSMutableArray<ActivityInfoModel *> *playList;
@property(nonatomic,strong) NSMutableArray<LittleGameInfoModel *> *littleGameList;

View File

@@ -643,6 +643,14 @@ UIKIT_EXTERN NSString *kShowFirstRechargeView;
BoomInfoViewController *vc = [[BoomInfoViewController alloc] init];
vc.modalPresentationStyle = UIModalPresentationOverFullScreen;
[self.hostDelegate.getCurrentNav presentViewController:vc animated:YES completion:nil];
@kWeakify(self);
[vc setShowGiftPanel:^{
@kStrongify(self);
if (self.showSendGiftView) {
self.showSendGiftView();
}
}];
}
- (void)didTapConfigEntranceButton {