123456789101112131415161718192021222324252627282930313233343536373839404142 |
- //
- // ChatSearchFindbyFuJCell.m
- // smartRhino
- //
- // Created by armin on 2019/11/8.
- // Copyright © 2019 tederen. All rights reserved.
- //
- #import "ChatSearchFindbyFuJCell.h"
- @implementation ChatSearchFindbyFuJCell
- - (void)awakeFromNib {
- [super awakeFromNib];
- // Initialization code
- }
- - (void)setSelected:(BOOL)selected animated:(BOOL)animated {
- [super setSelected:selected animated:animated];
- // Configure the view for the selected state
- }
- + (CGFloat)configCell0Height{
- return 144;
- }
- + (ChatSearchFindbyFuJCell *)configCell0:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath{
- static NSString *cellIdentifer = @"ChatSearchFindbyFuJCell0";
- ChatSearchFindbyFuJCell *cell = [tableView dequeueReusableCellWithIdentifier:cellIdentifer];
- if (cell == nil) {
- cell = [[[NSBundle mainBundle] loadNibNamed:@"ChatSearchFindbyFuJCell" owner:nil options:nil] objectAtIndex:0];
- }
- cell.selectionStyle = UITableViewCellSelectionStyleNone;
-
- cell.cell0ContentBgView.layer.masksToBounds = YES;
- cell.cell0ContentBgView.layer.cornerRadius = 4.0;
- return cell;
- }
- @end
|