37 lines
815 B
Objective-C
37 lines
815 B
Objective-C
//
|
|
// GiGaMineInfoViewCell.m
|
|
// GIGA
|
|
//
|
|
// Created by lianxiang on 2018/9/3.
|
|
// Copyright © 2018年 com.giga.ios. All rights reserved.
|
|
//
|
|
|
|
#import "GiGaMineInfoViewCell.h"
|
|
|
|
@implementation GiGaMineInfoViewCell
|
|
|
|
- (void)awakeFromNib {
|
|
[super awakeFromNib];
|
|
// Initialization code
|
|
}
|
|
|
|
- (void)loadCellData:(NSIndexPath *)indexPath{
|
|
|
|
NSArray *arr =@[@"历史记录",@"历史测试",@"系统设置"];
|
|
NSArray *imageName = @[@"user_history",@"user_test",@"user_setup"];
|
|
self.descLabel.text = arr[indexPath.row];
|
|
self.listImageView.image = [UIImage imageNamed:imageName[indexPath.row]];
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
- (void)setSelected:(BOOL)selected animated:(BOOL)animated {
|
|
[super setSelected:selected animated:animated];
|
|
|
|
// Configure the view for the selected state
|
|
}
|
|
|
|
@end
|