123456789101112131415161718192021 |
- //
- // GoDisscussView.m
- // smartRhino
- //
- // Created by tederen on 2019/11/7.
- // Copyright © 2019 tederen. All rights reserved.
- //
- #import "GoDisscussView.h"
- @implementation GoDisscussView
- - (instancetype)initWithFrame:(CGRect)frame{
- self = [super initWithFrame:frame];
- if (self) {
- self.backgroundColor = [UIColorHex(000000) colorWithAlphaComponent:0.3];
- }
- return self;
- }
- @end
|