我之前已经问过这个问题,现在我会更清楚地告诉你我的项目情况
我添加了表视图作为子视图和表视图,其中4个部分和部分分别具有1,4(动态),3,2行。 在section = 0中,textfield在那里,section = 2 2 switch按钮,section = 3两行都有背景颜色。 我通过Xib添加的所有对象都不是以编程方式添加的, 当我向下滚动colorse进入第0,1节时,第1,2节中的按钮都会变得混乱。
if (indexPath.section==0) {
if (indexPath.row==0) {
self.enterNameTextField.autoresizingMask = UIViewAutoresizingFlexibleWidth |UIViewAutoresizingFlexibleHeight;
self.enterNameTextField.clearsOnBeginEditing =YES;
self.enterNameTextField.delegate = self;
self.enterNameTextField.tag=indexPath.row;
self.enterNameTextField.placeholder=@"Enter youe name";
self.enterNameTextField.contentVerticalAlignment = UIControlContentVerticalAlignmentCenter;
[cell.contentView addSubview: self.enterNameTextField];
}
else {
[self.enterNameTextField removeFromSuperview];
}
}
if (indexPath.section==1) {
NSInteger ii=[self.sectionRows count];
if(indexPath.row== ii) {
cell.accessoryType = UITableViewCellAccessoryDetailDisclosureButton;
cell.textLabel.text=@"Work Out Detail";
}
else {
NSArray *kk=[self.sectionRows objectAtIndex:indexPath.row];
NSLog(@"..%@/...index=%d",[self.sectionRows objectAtIndex:indexPath.row],indexPath.row);
cell.textLabel.text=[NSString stringWithFormat:@"%@.%@",[kk objectAtIndex:2],[kk objectAtIndex:0 ]];
}
}
if (indexPath.section==2) {
if (indexPath.row==0) {
NSInteger taskData;
taskData= [[NSUserDefaults standardUserDefaults]integerForKey:@"RepetitionCheckMark"];
self.repitiiondata=[self.listOfRepititionContent objectAtIndex:taskData];
cell.textLabel.text=@"Repetitions";
cell.detailTextLabel.text=self.repitiiondata;
NSLog(@"cvxcv%@",self.repitiiondata);
cell.accessoryType = UITableViewCellAccessoryDetailDisclosureButton;
}
if (indexPath.row==1) {
cell.accessoryView=[[UIView alloc]initWithFrame:self.coolDownSwitch.frame];
cell.accessoryView=[[UIView alloc]initWithFrame:self.warmUpSwitch.frame];
cell.textLabel.text=@"Warm Up(5 min.)";
int pp=[ self.wrmUpString integerValue];
if(pp==1) {
[self.warmUpSwitch setOn:YES];
}
else {
[self.warmUpSwitch setOn:NO];
}
[cell.accessoryView addSubview:self.warmUpSwitch];
}
if (indexPath.row==2) {
cell.accessoryView=[[UIView alloc]initWithFrame:self.coolDownSwitch.frame];
[cell.accessoryView addSubview:self.coolDownSwitch];
int pp=[ self.coolDwnString integerValue]
if(pp==1) {
[self.coolDownSwitch setOn:YES];
}
else {
[self.coolDownSwitch setOn:NO];
}
cell.textLabel.text=@"Cool Down(5 min.)";
[cell.accessoryView addSubview:self.coolDownSwitch];
}
}
}
if (indexPath.section==3) {
if (indexPath.row==0) {
cell.textLabel.text=@" SAVE CONTENT";
cell.textLabel.textColor=[UIColor whiteColor];
cell.backgroundColor=[UIColor redColor];
}
else {
cell.textLabel.text=@" DELETE CONTENT";
cell.textLabel.textColor=[UIColor whiteColor];
cell.backgroundColor=[UIColor blackColor];
}
}
}
return cell;
}
答案 0 :(得分:1)
我发现很难理解你的疑问。 但试试这个。 在xib中给出不同的cellidentifier。 并在diff部分使用diff cell 问题是第0节重用第2节中的单元格。
答案 1 :(得分:0)
将您的小区标识符设置为nil。 这对你有帮助。