XRBaseView.m 708 B

123456789101112131415161718192021222324252627282930
  1. //
  2. // XRBaseView.m
  3. // BuguLive
  4. //
  5. // Created by 丁凯 on 2017/6/24.
  6. // Copyright © 2017年 xfg. All rights reserved.
  7. //
  8. #import "XRBaseView.h"
  9. @implementation XRBaseView
  10. -(instancetype)initWithFrame:(CGRect)frame
  11. {
  12. self = [super initWithFrame:frame];
  13. if (self)
  14. {
  15. self.backgroundColor = [kBlackColor colorWithAlphaComponent:0.5];
  16. self.bottomView = [[UIView alloc]initWithFrame:CGRectMake(kScreenW/2 -149, kScreenH/2 - 88, 296, 176)];
  17. self.bottomView.backgroundColor = kWhiteColor;
  18. self.bottomView.layer.cornerRadius = 3;
  19. self.bottomView.layer.masksToBounds = YES;
  20. [self addSubview:self.bottomView];
  21. }
  22. return self;
  23. }
  24. @end