diskListBgView.m 418 B

123456789101112131415161718192021222324252627
  1. //
  2. // diskListBgView.m
  3. // 隐私保护
  4. //
  5. // Created by xd h on 2024/1/23.
  6. //
  7. #import "diskListBgView.h"
  8. @implementation diskListBgView
  9. - (id)initWithFrame:(CGRect)frame{
  10. self = [super initWithFrame:frame];
  11. [self setBackgroundColor:[UIColor hwColor:@"000000" alpha:0.5]];
  12. [self drawAnyView];
  13. return self;
  14. }
  15. - (void)drawAnyView
  16. {
  17. //self.backgroundColor = [UIColor redColor];
  18. }
  19. @end