音萌。2.2.0版本开发

This commit is contained in:
liyuhua
2024-01-30 16:46:31 +08:00
parent 6d42c9bc74
commit 910cb0ab0e
95 changed files with 2386 additions and 672 deletions

View File

@@ -202,15 +202,16 @@
case XPMineItemType_My_Room:
{
if(self.userInfo.isCertified == NO){
[self showRealNameAuthenticationTipsAlertView];
return;
}
NSString* roomUid = [NSString stringWithFormat:@"%ld", (long)self.userInfo.uid];
[Api getRoomInfo:^(BaseModel * _Nullable data, NSInteger code, NSString * _Nullable msg) {
if (code == 200) {
RoomInfoModel * roomInfo = [RoomInfoModel modelWithJSON:data.data];
if (roomInfo.isReselect) {
if(self.userInfo.isCertified == NO){
[self showRealNameAuthenticationTipsAlertView:@"为了营造更安全的网络环境\n在 开通个人房间前\n需要先进行实名认证" isShowRoom:YES];
return;
}
XPLittleGameRoomOpenView * roomOpenView = [[XPLittleGameRoomOpenView alloc] init];
roomOpenView.roomInfo = roomInfo;
roomOpenView.currentVC = self;