uploadFileBottomView.m 418 B

123456789101112131415161718192021222324252627282930
  1. //
  2. // uploadFileBottomView.m
  3. // 隐私保护
  4. //
  5. // Created by xd h on 2023/11/10.
  6. //
  7. #import "uploadFileBottomView.h"
  8. @interface uploadFileBottomView ()
  9. @end
  10. @implementation uploadFileBottomView
  11. - (id)initWithFrame:(CGRect)frame{
  12. self = [super initWithFrame:frame];
  13. [self drawAnyView];
  14. return self;
  15. }
  16. - (void)drawAnyView{
  17. [self setBackgroundColor:[UIColor whiteColor]];
  18. }
  19. @end