// // ComListCell.m // LNManager // // Created by EchoShacolee on 2017/5/31. // Copyright © 2017年 lee. All rights reserved. // #import "ComListCell.h" @interface ComListCell() { UILabel *_coach; UILabel *_school; UILabel *_deptopinion; UILabel *_schopinion; UILabel *_content; UILabel *_student; UILabel *_time; UIButton *_oneBtn; UIView *_view; } @end @implementation ComListCell +(ComListCell *)cellForTabelView:(UITableView *)tableView{ ComListCell* cell = [tableView dequeueReusableCellWithIdentifier:@"ComListCell"]; if (!cell) { cell = [[ComListCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:@"ComListCell"]; } return cell; } - (instancetype)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier { if (self = [super initWithStyle:style reuseIdentifier:reuseIdentifier]) { self.selectionStyle = UITableViewCellSelectionStyleNone; self.contentView.backgroundColor = [UIColor whiteColor]; NSArray * textArr = @[@"被投诉教练",@"机构名字",@"DEPTOPINION",@"SCHOPINION",@"评价内容",@"时间",@"学员"]; NSMutableArray * labArr = [NSMutableArray new]; // for (int i=0; i