diff --git a/keyBoard/Class/Shop/VC/KBShopItemVC.m b/keyBoard/Class/Shop/VC/KBShopItemVC.m index 8f27cc9..be6b783 100644 --- a/keyBoard/Class/Shop/VC/KBShopItemVC.m +++ b/keyBoard/Class/Shop/VC/KBShopItemVC.m @@ -12,6 +12,7 @@ #import "KBSkinInstallBridge.h" #import "KBHUD.h" #import "KBShopVM.h" +#import "KBSkinDetailVC.h" @interface KBShopItemVC () @property (nonatomic, copy) void(^scrollCallback)(UIScrollView *scrollView); @@ -171,6 +172,9 @@ } - (void)kb_handleShopTapAtIndexPath:(NSIndexPath *)indexPath { + KBSkinDetailVC *vc = [[KBSkinDetailVC alloc] init]; + [self.navigationController pushViewController:vc animated:true]; + return; KBShopThemeModel *theme = (indexPath.item < self.dataSource.count) ? self.dataSource[indexPath.item] : nil; NSString *title = theme.themeName.length ? theme.themeName : KBLocalized(@"专属皮肤002"); // 将需求固定到 002.zip,本地写死皮肤 id,便于键盘扩展识别并解压。