| 123456789101112131415161718192021 |
- //
- // SReportViewCell.m
- // BuguLive
- //
- // Created by 丁凯 on 2017/9/1.
- // Copyright © 2017年 xfg. All rights reserved.
- #import "SReportViewCell.h"
- @implementation SReportViewCell
- - (void)awakeFromNib
- {
- [super awakeFromNib];
- self.backgroundColor = kBackGroundColor;
- self.selectionStyle = UITableViewCellSelectionStyleNone;
- }
- @end
|