界面修改

This commit is contained in:
祝发冬 2022-12-19 12:37:22 +08:00
parent a0e5554d26
commit 06d0979e42
1 changed files with 15 additions and 14 deletions

View File

@ -356,27 +356,28 @@ static NSString *setTimerflag = @"SetTimerCell";
[cell configTitleLabel:@"循环开关" timer:[NSString stringWithFormat:@"持续时长%d分钟",[dataContorl hexToTen:model.lastTime]] switchStatus:isOn];
if (indexPath.section==1+_titieArr.count)
cell.selectionStyle = UITableViewCellSelectionStyleNone;
}
if (indexPath.section==1+_titieArr.count)
{
if(_selectSection == indexPath.section)
{
if(_selectSection == indexPath.section)
{
cell.backImageView.image=[UIImage imageNamed:@"bottomRound"];
}
else
{
cell.backImageView.image=[UIImage imageNamed:@"ifishSetCell_back.png"];
}
cell.backImageView.image=[UIImage imageNamed:@"bottomRound"];
}
else
{
cell.backImageView.image=[UIImage imageNamed:@"ifishSetCell_back.png"];
}
cell.selectionStyle = UITableViewCellSelectionStyleNone;
}
else
{
cell.backImageView.image=[UIImage imageNamed:@"ifishSetCell_back.png"];
}
return cell;
}