SReportViewCell.m 355 B

123456789101112131415161718192021
  1. //
  2. // SReportViewCell.m
  3. // BuguLive
  4. //
  5. // Created by 丁凯 on 2017/9/1.
  6. // Copyright © 2017年 xfg. All rights reserved.
  7. #import "SReportViewCell.h"
  8. @implementation SReportViewCell
  9. - (void)awakeFromNib
  10. {
  11. [super awakeFromNib];
  12. self.backgroundColor = kBackGroundColor;
  13. self.selectionStyle = UITableViewCellSelectionStyleNone;
  14. }
  15. @end