123456789101112131415161718192021222324252627 |
- //
- // MyApprovalModel.m
- // smartRhino
- //
- // Created by tederen on 2019/11/1.
- // Copyright © 2019 tederen. All rights reserved.
- //
- #import "MyApprovalModel.h"
- @implementation MyApprovalModel
- //- (CGFloat)getCellHeight {
- // UILabel *textLabel = [UILabel new];
- // textLabel.numberOfLines = 0;
- // textLabel.font = [UIFont systemFontOfSize:15.f];
- // textLabel.text = self.content;
- // CGSize textSize = [textLabel sizeThatFits:CGSizeMake(kGXScreenWidth-65-15, MAXFLOAT)];
- // CGFloat height = 65+textSize.height+15;
- // if (!ISEmptyString(self.replyName)&&!ISEmptyNumber(self.replyTimes)) {
- // height += 50;
- // }
- // return height;
- //}
- @end
|