This commit is contained in:
2025-12-11 15:00:58 +08:00
parent 94269209e0
commit 04c7d19c37
8 changed files with 77 additions and 15 deletions

View File

@@ -205,8 +205,10 @@ static NSString * const kMySkinCellId = @"kMySkinCellId";
- (void)collectionView:(UICollectionView *)collectionView didSelectItemAtIndexPath:(NSIndexPath *)indexPath {
if (!self.isEditingMode) {
//
KBMyTheme *theme = self.data[indexPath.item];
[collectionView deselectItemAtIndexPath:indexPath animated:YES];
KBSkinDetailVC *vc = [[KBSkinDetailVC alloc] init];
vc.themeId = theme.themeId;
[self.navigationController pushViewController:vc animated:true];
return;
}