This commit is contained in:
启星
2025-11-21 16:17:05 +08:00
parent 7ac937ddbf
commit 8913ea6f48
283 changed files with 8474 additions and 800 deletions

View File

@@ -115,6 +115,7 @@
[self.moreArray insertObject:self.inviteModel atIndex:1];
}
}
[self.collectionView reloadData];
}
-(NSInteger)collectionView:(UICollectionView *)collectionView numberOfItemsInSection:(NSInteger)section{
return self.isMore?self.moreArray.count:self.serviceArray.count;
@@ -196,11 +197,23 @@
md4.icon = @"service_customer_service";
md4.type = QXMineServiceTypeCustomerService;
QXServiceModel *md5 = [[QXServiceModel alloc] init];
md5.title = @"歌手认证";
md5.icon = @"service_singer_auth";
md5.type = QXMineServiceTypeSingerAuth;
QXServiceModel *md6 = [[QXServiceModel alloc] init];
md6.title = @"我的歌单";
md6.icon = @"service_songlist";
md6.type = QXMineServiceTypeSongList;
_moreArray = [NSMutableArray arrayWithArray:@[
md1,
md2,
md3,
md4,
md5,
md6,
]];
}