This commit is contained in:
2025-11-14 18:43:08 +08:00
parent b27b9f9ee1
commit 4f2e80e482
31 changed files with 257 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
//
// KBVipPay.h
// keyBoard
//
// Created by Mac on 2025/11/14.
//
#import <UIKit/UIKit.h>
NS_ASSUME_NONNULL_BEGIN
@interface KBVipPay : UIViewController
@end
NS_ASSUME_NONNULL_END

View File

@@ -0,0 +1,31 @@
//
// KBVipPay.m
// keyBoard
//
// Created by Mac on 2025/11/14.
//
#import "KBVipPay.h"
@interface KBVipPay ()
@end
@implementation KBVipPay
- (void)viewDidLoad {
[super viewDidLoad];
// Do any additional setup after loading the view.
}
/*
#pragma mark - Navigation
// In a storyboard-based application, you will often want to do a little preparation before navigation
- (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender {
// Get the new view controller using [segue destinationViewController].
// Pass the selected object to the new view controller.
}
*/
@end