12345678910111213141516171819202122232425262728 |
- //
- // customLaunchView.m
- // 隐私保护
- //
- // Created by xd h on 2023/10/12.
- //
- #import "customLaunchView.h"
- @implementation customLaunchView
- - (id)initWithFrame:(CGRect)frame{
- self = [super initWithFrame:frame];
-
- [self drawAnyView];
-
- return self;
- }
- -(void)drawAnyView
- {
- UIImageView *imageView = [[UIImageView alloc] initWithFrame:CGRectMake(0, 0, SCREEN_W, SCREEN_H)];
- imageView.image = [UIImage imageNamed:@"customLaunch"];
- [self addSubview:imageView];
- }
- @end
|