19 lines
504 B
Objective-C
19 lines
504 B
Objective-C
//
|
|
// AppVersionDescCell.h
|
|
// GIGA
|
|
//
|
|
// Created by lianxiang on 2018/9/18.
|
|
// Copyright © 2018年 com.giga.ios. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import "VersionModel.h"
|
|
|
|
@interface AppVersionDescCell : UITableViewCell
|
|
@property (weak, nonatomic) IBOutlet UILabel *VersionDescLabel;
|
|
@property (weak, nonatomic) IBOutlet UILabel *versionLabe;
|
|
@property (weak, nonatomic) IBOutlet UILabel *tempLabe;
|
|
-(void)loadCellDataAt:(NSIndexPath *)indexPath version:(VersionModel *)model;
|
|
|
|
@end
|