From 1bfc989fe9870ba7428d5382438c9b88937ac115 Mon Sep 17 00:00:00 2001 From: edwinQQQ Date: Thu, 21 Aug 2025 18:25:46 +0800 Subject: [PATCH] =?UTF-8?q?=E7=A7=BB=E9=99=A4=20RoomAnimationView=20?= =?UTF-8?q?=E4=B8=AD=E7=9A=84=E8=B0=83=E8=AF=95=E8=83=8C=E6=99=AF=E8=89=B2?= =?UTF-8?q?=E8=AE=BE=E7=BD=AE=EF=BC=8C=E6=8F=90=E5=8D=87=E4=BB=A3=E7=A0=81?= =?UTF-8?q?=E6=95=B4=E6=B4=81=E6=80=A7=E5=92=8C=E5=8F=AF=E7=BB=B4=E6=8A=A4?= =?UTF-8?q?=E6=80=A7=E3=80=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../YMRoom/View/AnimationView/RoomAnimationView.m | 9 --------- 1 file changed, 9 deletions(-) diff --git a/YuMi/Modules/YMRoom/View/AnimationView/RoomAnimationView.m b/YuMi/Modules/YMRoom/View/AnimationView/RoomAnimationView.m index 70d61239..00e7ebbb 100644 --- a/YuMi/Modules/YMRoom/View/AnimationView/RoomAnimationView.m +++ b/YuMi/Modules/YMRoom/View/AnimationView/RoomAnimationView.m @@ -2662,9 +2662,6 @@ BannerSchedulerDelegate if (!_bannerSwipeGestureContainer) { _bannerSwipeGestureContainer = [[UIView alloc] init]; _bannerSwipeGestureContainer.userInteractionEnabled = YES; -#if DEBUG - _bannerSwipeGestureContainer.backgroundColor = [UIColor colorWithRed:1 green:0 blue:0 alpha:0.4]; -#endif } return _bannerSwipeGestureContainer; } @@ -2673,9 +2670,6 @@ BannerSchedulerDelegate if (!_bannerLeftTapGestureContainer) { _bannerLeftTapGestureContainer = [[UIView alloc] init]; _bannerLeftTapGestureContainer.userInteractionEnabled = YES; -#if DEBUG - _bannerLeftTapGestureContainer.backgroundColor = [UIColor colorWithRed:0 green:1 blue:0 alpha:0.4]; -#endif } return _bannerLeftTapGestureContainer; } @@ -2684,9 +2678,6 @@ BannerSchedulerDelegate if (!_bannerRightTapGestureContainer) { _bannerRightTapGestureContainer = [[UIView alloc] init]; _bannerRightTapGestureContainer.userInteractionEnabled = YES; -#if DEBUG - _bannerRightTapGestureContainer.backgroundColor = [UIColor colorWithRed:0 green:0 blue:1 alpha:0.4]; -#endif } return _bannerRightTapGestureContainer; }