房间内的部分UI

This commit is contained in:
fengshuo
2021-10-14 21:10:04 +08:00
parent 54fee4527a
commit 64be85e084
94 changed files with 2026 additions and 2 deletions

View File

@@ -30,6 +30,10 @@
#import "XPMineRechargeViewController.h"
#import "XPWebViewController.h"
#warning todo
#import "BaseNavigationController.h"
#import "XPRoomViewController.h"
@interface XPMineViewController ()<UITableViewDelegate, UITableViewDataSource, XPMineProtocol, XPMineMatchTableViewCellDelegate, XPMineHeadViewDelegate>
///
@@ -126,6 +130,13 @@
break;
case XPMineItemType_Account:
{
XPRoomViewController * roomVC = [[XPRoomViewController alloc] init];
BaseNavigationController * nav = [[BaseNavigationController alloc] initWithRootViewController:roomVC];
nav.modalPresentationStyle = UIModalPresentationFullScreen;
[self.navigationController presentViewController:nav animated:YES completion:nil];
return;
#warning to do
XPMineRechargeViewController * rechargeVC = [[XPMineRechargeViewController alloc] init];
[self.navigationController pushViewController:rechargeVC animated:YES];
}