房间公屏可以显示进房以及文本消息

This commit is contained in:
fengshuo
2021-10-27 19:07:10 +08:00
parent 66f3aa50e1
commit 5d7d3efea9
19 changed files with 497 additions and 157 deletions

View File

@@ -130,7 +130,12 @@
break;
case XPMineItemType_Account:
{
XPRoomViewController * roomVC = [[XPRoomViewController alloc] init];
roomVC.roomUid = [NSString stringWithFormat:@"%d", 1004437];
BaseNavigationController * baseNav = [[BaseNavigationController alloc] initWithRootViewController:roomVC];
baseNav.modalPresentationStyle = UIModalPresentationFullScreen;
[self presentViewController:baseNav animated:YES completion:nil];
return;
XPMineRechargeViewController * rechargeVC = [[XPMineRechargeViewController alloc] init];
[self.navigationController pushViewController:rechargeVC animated:YES];
}