This commit is contained in:
2025-11-08 22:25:57 +08:00
parent 41b14ceea4
commit 675a9f6d64
12 changed files with 544 additions and 4 deletions

View File

@@ -7,6 +7,7 @@
#import "MyVC.h"
#import "MySkinVC.h"
#import "KBSkinDetailVC.h"
@interface MyVC ()
@@ -28,7 +29,9 @@
}
- (void)touchesBegan:(NSSet<UITouch *> *)touches withEvent:(UIEvent *)event{
MySkinVC *vc = [[MySkinVC alloc] init];
// MySkinVC *vc = [[MySkinVC alloc] init];
KBSkinDetailVC *vc = [[KBSkinDetailVC alloc] init];
[self.navigationController pushViewController:vc animated:true];
}