cdts/xdts-ios 3/TreeHole/CYHResetCode/THBaseViewController/View/THView.m
2023-07-27 09:20:00 +08:00

26 lines
346 B
Objective-C

//
// THView.m
// TreeHole
//
// Created by iOS on 2023/2/6.
// Copyright © 2023 CYH. All rights reserved.
//
#import "THView.h"
@implementation THView
- (instancetype)initWithFrame:(CGRect)frame {
if (self = [super initWithFrame:frame]) {
[self setupSubViews];
}
return self;
}
- (void)setupSubViews {
}
@end