26 lines
346 B
Objective-C
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
|