GoDisscussView.m 407 B

123456789101112131415161718192021
  1. //
  2. // GoDisscussView.m
  3. // smartRhino
  4. //
  5. // Created by tederen on 2019/11/7.
  6. // Copyright © 2019 tederen. All rights reserved.
  7. //
  8. #import "GoDisscussView.h"
  9. @implementation GoDisscussView
  10. - (instancetype)initWithFrame:(CGRect)frame{
  11. self = [super initWithFrame:frame];
  12. if (self) {
  13. self.backgroundColor = [UIColorHex(000000) colorWithAlphaComponent:0.3];
  14. }
  15. return self;
  16. }
  17. @end