34 lines
819 B
Objective-C
34 lines
819 B
Objective-C
//
|
|
// AppVersionDescCell.m
|
|
// GIGA
|
|
//
|
|
// Created by lianxiang on 2018/9/18.
|
|
// Copyright © 2018年 com.giga.ios. All rights reserved.
|
|
//
|
|
|
|
#import "AppVersionDescCell.h"
|
|
|
|
@implementation AppVersionDescCell
|
|
|
|
- (void)awakeFromNib {
|
|
[super awakeFromNib];
|
|
// Initialization code
|
|
//self.VersionDescLabel.text = @"1.版本有优化\n2.版本有优化\n3.版本有优化\n4.版本有优化\n5.版本有优化\n";
|
|
|
|
}
|
|
|
|
-(void)loadCellDataAt:(NSIndexPath *)indexPath version:(VersionModel *)model{
|
|
self.VersionDescLabel.text = model.content;
|
|
self.versionLabe.text = model.title;
|
|
self.tempLabe.text = model.createTime;
|
|
|
|
}
|
|
|
|
- (void)setSelected:(BOOL)selected animated:(BOOL)animated {
|
|
[super setSelected:selected animated:animated];
|
|
|
|
// Configure the view for the selected state
|
|
}
|
|
|
|
@end
|