61 lines
1.6 KiB
Objective-C
61 lines
1.6 KiB
Objective-C
//
|
|
// RuSunChangeNameTextViewCell.m
|
|
// Ifish
|
|
//
|
|
// Created by imac on 2017/6/2.
|
|
// Copyright © 2017年 lianlian. All rights reserved.
|
|
//
|
|
|
|
#import "RuSunChangeNameTextViewCell.h"
|
|
|
|
@implementation RuSunChangeNameTextViewCell
|
|
|
|
- (void)awakeFromNib {
|
|
|
|
[super awakeFromNib];
|
|
// Initialization code
|
|
|
|
}
|
|
|
|
//-(void)freshImgAt:(NSIndexPath *)indexPath{
|
|
//
|
|
// if (indexPath.row==5&&indexPath.section==1) {
|
|
// self.lineImgView.image = [UIImage imageNamed:@"redact_line_last"];
|
|
//
|
|
// }
|
|
// NSArray *titles= @[@"CH1",@"CH2",@"CH3",@"CH4",@"柜灯",@"加热棒"];
|
|
// if (indexPath.section==1) {
|
|
// self.chTitle.text = titles[indexPath.row];
|
|
// }
|
|
//
|
|
//
|
|
//}
|
|
//-(void)loadChnameAt:(NSIndexPath *)indexPath with:(RunSunCHControl *)ruSunCH
|
|
//{
|
|
//
|
|
// if (indexPath.section==1&&indexPath.row==0) {
|
|
// self.chName.text = ruSunCH.ch1name;
|
|
//
|
|
// }else if (indexPath.section==1&&indexPath.row==1){
|
|
// self.chName.text = ruSunCH.ch2name;
|
|
// }else if (indexPath.section==1&&indexPath.row==2){
|
|
// self.chName.text = ruSunCH.ch3name;
|
|
// }else if (indexPath.section==1&&indexPath.row==3){
|
|
// self.chName.text = ruSunCH.ch4name;
|
|
// }else if (indexPath.section==1&&indexPath.row==4){
|
|
// self.chName.text = ruSunCH.guideng;
|
|
// }else if (indexPath.section==1&&indexPath.row==5){
|
|
// self.chName.text = ruSunCH.jiaRe;
|
|
// }
|
|
//}
|
|
|
|
|
|
|
|
- (void)setSelected:(BOOL)selected animated:(BOOL)animated {
|
|
[super setSelected:selected animated:animated];
|
|
|
|
// Configure the view for the selected state
|
|
}
|
|
|
|
@end
|