SSelectAreaCell.m 405 B

1234567891011121314151617181920212223
  1. //
  2. // SSelectAreaCell.m
  3. // BuguLive
  4. //
  5. // Created by 丁凯 on 2017/8/21.
  6. // Copyright © 2017年 xfg. All rights reserved.
  7. //
  8. #import "SSelectAreaCell.h"
  9. @implementation SSelectAreaCell
  10. - (void)awakeFromNib
  11. {
  12. [super awakeFromNib];
  13. self.bottomView.backgroundColor = kAppGrayColor1;
  14. self.bottomView.layer.cornerRadius = 30/2.0f;
  15. self.bottomView.layer.masksToBounds = YES;
  16. }
  17. @end