customLaunchView.m 503 B

12345678910111213141516171819202122232425262728
  1. //
  2. // customLaunchView.m
  3. // 隐私保护
  4. //
  5. // Created by xd h on 2023/10/12.
  6. //
  7. #import "customLaunchView.h"
  8. @implementation customLaunchView
  9. - (id)initWithFrame:(CGRect)frame{
  10. self = [super initWithFrame:frame];
  11. [self drawAnyView];
  12. return self;
  13. }
  14. -(void)drawAnyView
  15. {
  16. UIImageView *imageView = [[UIImageView alloc] initWithFrame:CGRectMake(0, 0, SCREEN_W, SCREEN_H)];
  17. imageView.image = [UIImage imageNamed:@"customLaunch"];
  18. [self addSubview:imageView];
  19. }
  20. @end