| 123456789101112131415161718192021222324252627 |
- //
- // diskListBgView.m
- // 隐私保护
- //
- // Created by xd h on 2024/1/23.
- //
- #import "diskListBgView.h"
- @implementation diskListBgView
- - (id)initWithFrame:(CGRect)frame{
- self = [super initWithFrame:frame];
- [self setBackgroundColor:[UIColor hwColor:@"000000" alpha:0.5]];
- [self drawAnyView];
-
-
- return self;
- }
- - (void)drawAnyView
- {
- //self.backgroundColor = [UIColor redColor];
- }
- @end
|