公会主页和家族主页

This commit is contained in:
fengshuo
2022-04-06 21:52:38 +08:00
parent 568c45ffde
commit b0101b6c10
47 changed files with 2690 additions and 2 deletions

View File

@@ -45,6 +45,8 @@
#import "XPSkillCardViewController.h"
#import "XPMineVisitorViewController.h"
#import "XPMineFansTeamViewController.h"
#import "XPMineClanViewController.h"
@interface XPMineViewController ()<UITableViewDelegate, UITableViewDataSource, XPMineProtocol, XPMineHeadItemTableViewCellDelegate, XPMineHeadViewDelegate>
///
@@ -268,6 +270,13 @@
[self.navigationController pushViewController:fansTeamVc animated:YES];
}
break;
case XPMineItemType_My_Guild:
{
XPMineClanViewController * clanVC = [[XPMineClanViewController alloc] init];
clanVC.uid = [NSString stringWithFormat:@"%ld", self.userInfo.uid];
[self.navigationController pushViewController:clanVC animated:YES];
}
break;
default:
break;
}