diff --git a/YuMi/Modules/YMRoom/View/RoomGame/View/SubView/MSRoomGameMsgView.m b/YuMi/Modules/YMRoom/View/RoomGame/View/SubView/MSRoomGameMsgView.m index 62cec8ff..83f99b3f 100644 --- a/YuMi/Modules/YMRoom/View/RoomGame/View/SubView/MSRoomGameMsgView.m +++ b/YuMi/Modules/YMRoom/View/RoomGame/View/SubView/MSRoomGameMsgView.m @@ -55,7 +55,7 @@ ///头部 @property (nonatomic,strong) XPRoomMessageHeaderView *headerView; -///messageView 持有这个工具类 进行数据的分发操作 TODO: 有需要在改 +///messageView 持有这个工具类 进行数据的分发操作 @property (nonatomic,strong) XPRoomMessageParser *messageParser; ///数据源 @property (nonatomic,strong) NSMutableArray *datasource; diff --git a/YuMi/Modules/YMRoom/View/Setting/View/XPRoomSettingViewController.m b/YuMi/Modules/YMRoom/View/Setting/View/XPRoomSettingViewController.m index 66b41924..f3076bba 100644 --- a/YuMi/Modules/YMRoom/View/Setting/View/XPRoomSettingViewController.m +++ b/YuMi/Modules/YMRoom/View/Setting/View/XPRoomSettingViewController.m @@ -341,7 +341,6 @@ XPRoomSettingItemModel * itemModel = [[self.datasource xpSafeObjectAtIndex:index - (void)didClickCancel:(RoomSettingInputType)type { // if (type == RoomSettingItemType_Pwd) { -// // TODO: 狀態復位 // } } diff --git a/YuMi/Modules/YMRoom/View/UserCard/Model/XPUserCardInfoModel.h b/YuMi/Modules/YMRoom/View/UserCard/Model/XPUserCardInfoModel.h index 694fecb9..33b87459 100644 --- a/YuMi/Modules/YMRoom/View/UserCard/Model/XPUserCardInfoModel.h +++ b/YuMi/Modules/YMRoom/View/UserCard/Model/XPUserCardInfoModel.h @@ -31,7 +31,6 @@ NS_ASSUME_NONNULL_BEGIN @property (nonatomic,strong) NSMutableDictionary *micQueue; ///是否隐藏送礼按钮 @property (nonatomic, assign) BOOL hideSendGiftItem; -//TODO: 先只改用户卡片中的 其实这个属性是不需要的 但是从用户卡片送礼物的VC 是需要delegate 所以先放在这里吧 ///协议 @property (nonatomic,weak) id delegate; diff --git a/YuMi/Modules/YMWeb/MSRoomGameWebVC.m b/YuMi/Modules/YMWeb/MSRoomGameWebVC.m index 3554923e..3c26a881 100644 --- a/YuMi/Modules/YMWeb/MSRoomGameWebVC.m +++ b/YuMi/Modules/YMWeb/MSRoomGameWebVC.m @@ -519,7 +519,7 @@ NSString * const kJPClose = @"newTppClose"; // 显示充值界面 - (void)pay:(NSDictionary*)args { - //拉起充值商城 TODO 客⼾端 + //拉起充值商城 TTAlertConfig *config = [[TTAlertConfig alloc]init]; config.title = YMLocalizedString(@"UserDetail_CP_Toast_0"); config.message = YMLocalizedString(@"XPNobleCenterViewController3"); @@ -596,7 +596,7 @@ NSString * const kJPClose = @"newTppClose"; - (void) destroy:(NSDictionary*)args { NSLog(@"BSGAME %s","游戏调⽤destroy"); - //关闭游戏 TODO 客⼾端 + //关闭游戏 [self willMoveToParentViewController:nil]; //1 [self.view removeFromSuperview]; //2 [self removeFromParentViewController]; //3 @@ -617,7 +617,7 @@ NSString * const kJPClose = @"newTppClose"; - (void) gameRecharge:(NSDictionary*)args { NSLog(@"BSGAME %s","游戏调⽤gameRecharge"); - //拉起充值商城 TODO 客⼾端 + //拉起充值商城 TTAlertConfig *config = [[TTAlertConfig alloc]init]; config.title = YMLocalizedString(@"UserDetail_CP_Toast_0"); config.message = YMLocalizedString(@"XPNobleCenterViewController3"); @@ -636,7 +636,7 @@ NSString * const kJPClose = @"newTppClose"; // 游戏加载完毕 - (void) gameLoaded:(NSDictionary*)args { - // 游戏加载完毕 TODO 客⼾端 + // 游戏加载完毕 [self.backBtn removeFromSuperview]; }